/* CSS Reset & Variables */
:root {
    /* Shopify Brand Colors */
    --shopify-green: #96bf48;
    --shopify-dark: #1a1a1a;
    --shopify-light: #f2f7ed;
    --primary: #5c6ac4;
    --primary-dark: #3f4dae;
    --primary-light: #7b88e8;
    --secondary: #ff5c79;
    --secondary-dark: #e63e62;
    --accent: #ffb347;
    --dark: #212326;
    --darker: #000000;
    --light: #f9fafc;
    --gray: #6b7280;
    --gray-light: #e5e7eb;
    --gradient: linear-gradient(135deg, #5c6ac4 0%, #96bf48 50%, #ff5c79 100%);
    --gradient-dark: linear-gradient(135deg, #3f4dae 0%, #7ea93a 50%, #e63e62 100%);

    /* Shadows & Effects */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.12);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 40px -10px rgba(0, 0, 0, 0.15);
    --shadow-primary: 0 10px 30px rgba(92, 106, 196, 0.3);

    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--dark);
    background-color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

button,
.btn {
    cursor: pointer;
    border: none;
    outline: none;
    font-family: inherit;
    transition: var(--transition-normal);
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray);
    max-width: 700px;
    margin: 0 auto 3rem;
}

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shopify-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--shopify-light);
    color: var(--shopify-dark);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    border: 2px solid var(--shopify-green);
    margin-bottom: 1.5rem;
}

.shopify-badge i {
    color: var(--shopify-green);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    font-size: 1rem;
    gap: 0.5rem;
}

.btn-primary {
    background: var(--gradient);
    color: white;
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-dark);
}

.btn-shopify {
    background-color: var(--shopify-green);
    color: white;
    box-shadow: 0 4px 12px rgba(150, 191, 72, 0.3);
}

.btn-shopify:hover {
    background-color: #88ab3a;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(150, 191, 72, 0.4);
}

.btn-secondary {
    background-color: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background-color: var(--primary);
    color: white;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.125rem;
}

.badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-new {
    background: linear-gradient(90deg, #ff5c79, #ff8e53);
    color: white;
}

.badge-feature {
    background: linear-gradient(90deg, #5c6ac4, #8b5cf6);
    color: white;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 800;
    font-size: 1.5rem;
}

.logo-icon {
    background: var(--gradient);
    width: 36px;
    height: 36px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
}

.nav-list {
    display: flex;
    gap: 2rem;
    padding: 0px !important;
    margin: 0px !important;
}

.nav-link {
    font-weight: 600;
    position: relative;
    padding: 0.5rem 0;
    color: var(--dark);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--primary);
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    background: none;
    color: var(--dark);
}

/* Hero Section */
.hero {
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #f9fafc 0%, #f0f4ff 100%);
    overflow: hidden;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%235c6ac4' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.5;
}

.hero-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--gray);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray);
    max-width: 120px;
}

.hero-visual {
    position: relative;
}

.hero-visual-container {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 1px solid rgba(0, 0, 0, 0.05);
    background: white;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: var(--transition-normal);
}

.hero-visual-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.visual-content {
    padding: 2rem;
    background: white;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
}

.visual-title {
    font-size: 1.5rem;
    font-weight: 700;
}

.shopify-tag {
    background: var(--shopify-green);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.cod-form-preview {
    background: #f8f9ff;
    border-radius: var(--radius-lg);
    padding: 2rem;
    border: 2px dashed var(--primary-light);
}

.form-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: var(--dark);
}

.form-field {
    background: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    margin-bottom: 1rem;
    border: 1px solid var(--gray-light);
}

.form-field label {
    display: block;
    font-size: 0.875rem;
    color: var(--gray);
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.form-field input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: var(--font-body);
}

.cod-button {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 1rem;
    border-radius: var(--radius-md);
    border: none;
    font-weight: 600;
    font-size: 1rem;
    margin-top: 1rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.cod-button:hover {
    background: var(--primary-dark);
}

/* Features Section */
.features {
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    border: 1px solid var(--gray-light);
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: var(--gradient);
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.feature-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-desc {
    color: var(--gray);
    margin-bottom: 1.5rem;
}

/* How It Works */
.how-it-works {
    background: linear-gradient(135deg, #f9fafc 0%, #f0f4ff 100%);
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    border-radius: var(--radius-full);
    background: var(--gradient);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content {
    flex-grow: 1;
}

.step-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

/* Integrations */
.integrations {
    background-color: white;
}

.integrations-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 2rem;
}

.integration-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    min-width: 150px;
}

.integration-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.integration-icon {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.integration-name {
    font-weight: 600;
}

/* Testimonials */
.testimonials {
    background: linear-gradient(135deg, #f9fafc 0%, #f0f4ff 100%);
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    margin: 0 1rem;
}

.testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--dark);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-full);
    background: var(--gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
}

.author-info h4 {
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--gray);
    font-size: 0.875rem;
}

/* Pricing */
.pricing {
    background-color: white;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.pricing-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 2.5rem 2rem;
    box-shadow: var(--shadow-lg);
    border: 2px solid var(--gray-light);
    transition: var(--transition-normal);
    position: relative;
}

.pricing-card.featured {
    border-color: var(--primary);
    transform: scale(1.05);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-period {
    color: var(--gray);
    font-size: 1rem;
}

.pricing-features {
    margin-bottom: 2rem;
}

.pricing-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.pricing-feature i {
    color: var(--shopify-green);
}

/* CTA */
.cta {
    background: var(--gradient);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.cta-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    position: relative;
    z-index: 2;
}

.cta-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    position: relative;
    z-index: 2;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta .btn {
    background-color: white;
    color: var(--primary);
    position: relative;
    z-index: 2;
    font-weight: 700;
}

.cta .btn:hover {
    background-color: var(--darker);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--darker);
    color: white;
    padding: 5rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-col-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--gray-light);
    transition: var(--transition-fast);
}

.footer-link:hover {
    color: white;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: var(--radius-full);
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-normal);
}

.social-link:hover {
    background-color: var(--primary);
    transform: translateY(-3px);
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

.floating {
    animation: float 5s ease-in-out infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 3s ease-in-out infinite;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-title {
        font-size: 2.8rem;
    }

    .section-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 3rem 0;
    }

    .header-actions,
    .nav-list {
        display: none;
    }


    .nav-list {
        padding: 2rem !important;
        margin: 0px !important;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding: 8rem 0 3rem;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-stats {
        flex-direction: column;
        gap: 2rem;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .pricing-card.featured {
        transform: none;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn-large {
        padding: 0.875rem 1.5rem;
    }

    .cta-title {
        font-size: 2rem;
    }
}


/* ************************** */
/* ************************** */
/* ************************** */
/* ************************** */
/* ************************** */
/* ************************** */

/* CSS Professional for Terms of Service Page */
.entry-content {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.8;
    color: #2d3748;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    background: white;
}

/* Main Heading */
.entry-content h2 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid #5c6ac4;
    position: relative;
    font-weight: 800;
}

.entry-content h2:after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 150px;
    height: 3px;
    background: linear-gradient(90deg, #5c6ac4, #8b5cf6);
    border-radius: 3px;
}

/* Section Headings */
.entry-content h3 {
    font-size: 1.6rem;
    color: #2d3748;
    margin: 2.5rem 0 1rem;
    padding-left: 15px;
    border-left: 4px solid #5c6ac4;
    font-weight: 700;
    background: linear-gradient(to right, #f8fafc, transparent);
    padding-top: 8px;
    padding-bottom: 8px;
    border-radius: 0 8px 8px 0;
}

/* Sub-headings */
.entry-content h4 {
    font-size: 1.3rem;
    color: #4a5568;
    margin: 1.8rem 0 0.8rem;
    font-weight: 600;
    position: relative;
    padding-left: 12px;
}

.entry-content h4:before {
    content: '•';
    position: absolute;
    left: 0;
    color: #5c6ac4;
    font-size: 1.5rem;
    line-height: 1;
}

/* Paragraphs */
.ds-markdown-paragraph {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: #4a5568;
    text-align: justify;
}

/* Lists */
.entry-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
    padding-left: 0;
}

.entry-content li {
    margin-bottom: 0.75rem;
    position: relative;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.entry-content li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.8rem;
    width: 6px;
    height: 6px;
    background: #5c6ac4;
    border-radius: 50%;
}

/* Links */
.entry-content a {
    color: #5c6ac4;
    text-decoration: none;
    border-bottom: 1px dotted #5c6ac4;
    transition: all 0.3s ease;
    font-weight: 500;
}

.entry-content a:hover {
    color: #4f46e5;
    border-bottom: 1px solid #4f46e5;
}

/* Date and Meta Info */
.ds-markdown-paragraph strong:first-child {
    display: block;
    color: #2d3748;
    font-size: 1.1rem;
}

/* Important Notice Box */
.entry-content > .ds-markdown-paragraph:first-of-type {
    background: linear-gradient(135deg, #f0f4ff, #f8fafc);
    padding: 20px 25px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    margin: 2rem 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Section */
.entry-content h3:last-of-type {
    margin-top: 3rem;
    background: linear-gradient(to right, #f0fff4, transparent);
    border-left-color: #48bb78;
}

.entry-content h3:last-of-type + .ds-markdown-paragraph {
    background: #f8fff9;
    padding: 20px;
    border-radius: 10px;
    border: 1px solid #c6f6d5;
}

/* Lists inside paragraphs */
.ds-markdown-paragraph + ul {
    background: #f8fafc;
    padding: 20px 20px 20px 40px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    margin: 1.5rem 0;
}

/* Numbered sections effect */
.entry-content {
    counter-reset: section;
}

.entry-content h3 {
    counter-increment: section;
    counter-reset: subsection;
}

.entry-content h3:before {
    content: counter(section) ". ";
    color: #5c6ac4;
    font-weight: bold;
    margin-right: 10px;
}

.entry-content h4 {
    counter-increment: subsection;
}

.entry-content h4:before {
    content: " ";
    display: none !important;
    color: #5c6ac4;
    font-weight: bold;
    margin-right: 5px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .entry-content {
        padding: 20px 15px;
    }
    
    .entry-content h2 {
        font-size: 2rem;
        padding-bottom: 0.8rem;
    }
    
    .entry-content h3 {
        font-size: 1.4rem;
        margin: 2rem 0 0.8rem;
        padding-left: 10px;
    }
    
    .entry-content h4 {
        font-size: 1.2rem;
    }
    
    .ds-markdown-paragraph {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .entry-content ul {
        margin-left: 1rem;
    }
    
    .entry-content li {
        padding-left: 1.2rem;
    }
}

/* Print Styles */
@media print {
    .entry-content {
        max-width: 100%;
        padding: 0;
    }
    
    .entry-content h2,
    .entry-content h3,
    .entry-content h4 {
        color: #000;
        page-break-after: avoid;
    }
    
    .ds-markdown-paragraph {
        page-break-inside: avoid;
    }
    
    .entry-content a {
        color: #000;
        border-bottom: none;
        text-decoration: underline;
    }
}

/* Scroll animation for sections */
.entry-content h3,
.entry-content h4 {
    scroll-margin-top: 100px;
}

/* Highlight important terms */
.entry-content strong {
    color: #2d3748;
    font-weight: 600;
}

/* Add subtle hover effects to sections */
.entry-content h3:hover {
    background: linear-gradient(to right, #f0f4ff, transparent);
    transition: background 0.3s ease;
}

/* Footer-like bottom section */
.entry-content > .ds-markdown-paragraph:last-of-type {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #e2e8f0;
    font-style: italic;
    color: #718096;
    text-align: center;
    font-size: 0.95rem;
}

/* Email address styling */
.entry-content a[href^="mailto:"] {
    color: #5c6ac4;
    font-weight: 600;
}

.entry-content a[href^="mailto:"]:hover {
    color: #4f46e5;
    text-decoration: none;
    border-bottom: 1px solid #4f46e5;
}

/* Address styling */
.entry-content p:contains("Address:") {
    font-family: 'Courier New', monospace;
    background: #f8fafc;
    padding: 10px 15px;
    border-radius: 6px;
    border-left: 3px solid #5c6ac4;
    margin: 10px 0;
}

/* Dark mode support */
@media (prefers-color-scheme: dark) {
    .entry-content {
        color: #e2e8f0;
        background: #1a202c;
    }
    
    .entry-content h2 {
        color: #f7fafc;
        border-bottom-color: #8b5cf6;
    }
    
    .entry-content h3 {
        color: #e2e8f0;
        background: linear-gradient(to right, rgba(92, 106, 196, 0.1), transparent);
    }
    
    .ds-markdown-paragraph {
        color: #cbd5e0;
    }
    
    .entry-content ul {
        background: rgba(45, 55, 72, 0.3);
    }
    
    .entry-content a {
        color: #8b5cf6;
    }
}

/* Smooth scrolling for anchor links */
html {
    scroll-behavior: smooth;
}

/* Add some spacing between major sections */
.entry-content > * {
    margin-bottom: 1.5rem;
}

/* First paragraph after heading */
.entry-content h3 + .ds-markdown-paragraph,
.entry-content h4 + .ds-markdown-paragraph {
    margin-top: 0.5rem;
}

/* Legal disclaimer highlight */
.ds-markdown-paragraph:contains("AS IS"),
.ds-markdown-paragraph:contains("LIMITATION OF LIABILITY"),
.ds-markdown-paragraph:contains("INDEMNIFICATION") {
    background: #fff5f5;
    padding: 15px 20px;
    border-radius: 8px;
    border-left: 4px solid #f56565;
    margin: 1.5rem 0;
    color: #742a2a;
    font-weight: 500;
}

@media (prefers-color-scheme: dark) {
    .ds-markdown-paragraph:contains("AS IS"),
    .ds-markdown-paragraph:contains("LIMITATION OF LIABILITY"),
    .ds-markdown-paragraph:contains("INDEMNIFICATION") {
        background: rgba(245, 101, 101, 0.1);
        color: #fed7d7;
    }
}

/* Add decorative elements for better readability */
.entry-content {
    position: relative;
}

.entry-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #5c6ac4, #96bf48, #8b5cf6);
    border-radius: 5px 5px 0 0;
}

/* Improve list readability */
.entry-content li .ds-markdown-paragraph {
    margin-bottom: 0.3rem;
}

/* Add subtle shadow for depth */
.entry-content {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    padding: 50px;
    margin: 80px auto;
}

@media (max-width: 768px) {
    .entry-content {
        padding: 25px 20px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
}

/* Custom scrollbar for the content */
.entry-content::-webkit-scrollbar {
    width: 8px;
}

.entry-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.entry-content::-webkit-scrollbar-thumb {
    background: #5c6ac4;
    border-radius: 4px;
}

.entry-content::-webkit-scrollbar-thumb:hover {
    background: #4f46e5;
}

/* Add page number indicator for long content */
.entry-content {
    position: relative;
}

.entry-content:after {
    content: 'Terms of Service';
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #5c6ac4;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    opacity: 0.8;
    z-index: 100;
    display: none;
}

@media (min-width: 1200px) {
    .entry-content:after {
        display: block;
    }
}

/* Mobile Optimizations */
@media (max-width: 480px) {
    .entry-content h2 {
        font-size: 1.8rem;
        text-align: center;
    }

    .entry-content h2:after {
        left: 50%;
        transform: translateX(-50%);
        width: 100px;
    }

    .entry-content h3 {
        font-size: 1.3rem;
        padding-left: 8px;
        margin-left: -8px;
    }

    .ds-markdown-paragraph {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .entry-content ul {
        margin-left: 0.5rem;
    }

    .entry-content li {
        padding-left: 1rem;
    }

    .entry-content li:before {
        width: 5px;
        height: 5px;
        top: 0.7rem;
    }
}

/* Table styling for pricing */
.entry-content ul:has(li:contains("$19/month")) {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
    background: #f8fafc;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.entry-content ul:has(li:contains("$19/month")) li {
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

/* Highlight plan names */
.entry-content li:contains("Free Trial"),
.entry-content li:contains("Starter Plan"),
.entry-content li:contains("Pro Plan"),
.entry-content li:contains("Enterprise Plan") {
    font-weight: 700;
    color: #2d3748;
    border-left: 3px solid #5c6ac4;
    padding-left: 12px;
    margin-left: -12px;
}

/* Improve spacing for better readability */
.entry-content>*+h3 {
    margin-top: 3rem;
}

/* Add subtle background to important sections */
.entry-content h3+ul,
.entry-content h4+ul {
    background: #f8fafc;
    padding: 15px 20px 15px 35px;
    border-radius: 8px;
    margin: 1rem 0 2rem;
}

/* Navigation anchor points */
.entry-content h3[id],
.entry-content h4[id] {
    scroll-margin-top: 120px;
}