
        /* CSS Variables */
        :root {
            --primary: #3a86ff;
            --primary-dark: #2667cc;
            --secondary: #8338ec;
            --accent: #ff006e;
            --light: #f8f9fa;
            --dark: #212529;
            --gray: #6c757d;
            --light-gray: #e9ecef;
            --border-radius: 8px;
            --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
            --transition: all 0.3s ease;
        }

        /* Base Styles */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: var(--dark);
            background-color: #fff;
            overflow-x: hidden;
        }

        h1, h2, h3, h4, h5 {
            font-weight: 700;
            line-height: 1.2;
            margin-bottom: 1rem;
        }

        h1 {
            font-size: 3.5rem;
        }

        h2 {
            font-size: 2.5rem;
        }

        h3 {
            font-size: 1.8rem;
        }

        p {
            margin-bottom: 1.5rem;
        }

        a {
            text-decoration: none;
            color: inherit;
        }

        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        section {
            padding: 80px 0;
        }

        .text-center {
            text-align: center;
        }

        .btn {
            display: inline-block;
            padding: 12px 30px;
            border-radius: var(--border-radius);
            font-weight: 600;
            text-align: center;
            cursor: pointer;
            transition: var(--transition);
            border: none;
            font-size: 1rem;
        }

        .btn-primary {
            background-color: var(--primary);
            color: white;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: var(--shadow);
        }

        .btn-secondary {
            background-color: transparent;
            color: var(--primary);
            border: 2px solid var(--primary);
        }

        .btn-secondary:hover {
            background-color: rgba(58, 134, 255, 0.1);
        }

        .btn-large {
            padding: 15px 35px;
            font-size: 1.1rem;
        }

        /* Header Styles */
        header {
            background-color: white;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
        }

        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: var(--primary);
        }

        .logo span {
            color: var(--secondary);
        }

        .nav-links {
            display: flex;
            list-style: none;
        }

        .nav-links li {
            margin-left: 30px;
        }

        .nav-links a {
            font-weight: 500;
            transition: var(--transition);
        }

        .nav-links a:hover {
            color: var(--primary);
        }

        .nav-buttons {
            display: flex;
            gap: 15px;
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
        }

        .hamburger span {
            width: 25px;
            height: 3px;
            background-color: var(--dark);
            margin: 3px 0;
            transition: var(--transition);
        }

        /* Hero Section */
        .hero {
            background: linear-gradient(135deg, #f5f7fa 0%, #e4edf5 100%);
            padding: 150px 0 100px;
            position: relative;
            overflow: hidden;
        }

        .hero-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hero-text {
            flex: 1;
            max-width: 600px;
        }

        .hero-text h1 {
            margin-bottom: 20px;
            color: var(--dark);
        }

        .hero-text p {
            font-size: 1.2rem;
            color: var(--gray);
            margin-bottom: 30px;
        }

        .hero-buttons {
            display: flex;
            gap: 15px;
        }

        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .dashboard-preview {
            width: 100%;
            max-width: 600px;
            border-radius: 12px;
            box-shadow: var(--shadow);
            background: white;
            padding: 20px;
            position: relative;
        }

        .dashboard-header {
            display: flex;
            justify-content: space-between;
            margin-bottom: 20px;
        }

        .dashboard-tabs {
            display: flex;
            gap: 10px;
        }

        .tab {
            padding: 8px 15px;
            border-radius: 20px;
            font-size: 0.9rem;
            background-color: var(--light-gray);
        }

        .tab.active {
            background-color: var(--primary);
            color: white;
        }

        .dashboard-content {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 20px;
        }

        .metrics {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
        }

        .metric-card {
            background: var(--light);
            padding: 15px;
            border-radius: var(--border-radius);
        }

        .metric-value {
            font-size: 1.8rem;
            font-weight: 700;
            color: var(--primary);
        }

        .metric-label {
            font-size: 0.9rem;
            color: var(--gray);
        }

        .channels {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .channel {
            display: flex;
            align-items: center;
            padding: 10px;
            background: var(--light);
            border-radius: var(--border-radius);
        }

        .channel-icon {
            width: 30px;
            height: 30px;
            background: var(--primary);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 10px;
            color: white;
        }

        /* Specialization Section */
        .specialization {
            background-color: var(--light);
        }

        .section-header {
            max-width: 700px;
            margin: 0 auto 50px;
        }

        .section-header h2 {
            margin-bottom: 15px;
        }

        .specialization-content {
            display: flex;
            align-items: center;
            gap: 50px;
        }

        .specialization-text {
            flex: 1;
        }

        .specialization-visual {
            flex: 1;
            display: flex;
            justify-content: center;
        }

        .abebooks-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 30px;
            max-width: 400px;
            position: relative;
        }

        .abebooks-header {
            display: flex;
            align-items: center;
            margin-bottom: 20px;
        }

        .abebooks-logo {
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            color: white;
            font-weight: bold;
        }

        .abebooks-stats {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 15px;
            margin-bottom: 20px;
        }

        .stat {
            text-align: center;
            padding: 15px;
            background: var(--light);
            border-radius: var(--border-radius);
        }

        .stat-value {
            font-size: 1.5rem;
            font-weight: 700;
            color: var(--primary);
        }

        .stat-label {
            font-size: 0.9rem;
            color: var(--gray);
        }

        /* Platforms Section */
        .platforms-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
            gap: 30px;
            margin-top: 50px;
        }

        .platform-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 30px;
            text-align: center;
            transition: var(--transition);
        }

        .platform-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
        }

        .platform-icon {
            width: 70px;
            height: 70px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 1.8rem;
            color: white;
        }

        .amazon { background: linear-gradient(135deg, #ff9900, #ffad33); }
        .ebay { background: linear-gradient(135deg, #0064d2, #1a7ce2); }
        .walmart { background: linear-gradient(135deg, #0071ce, #1a8ae6); }
        .google { background: linear-gradient(135deg, #4285f4, #5a95f5); }
        .facebook { background: linear-gradient(135deg, #1877f2, #3a86f4); }

        /* Features Section */
        .features {
            background-color: var(--light);
        }

        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }

        .feature-card {
            background: white;
            border-radius: var(--border-radius);
            box-shadow: var(--shadow);
            padding: 30px;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-5px);
        }

        .feature-icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            background: var(--primary);
            color: white;
            font-size: 1.5rem;
        }

        /* CTA Section */
        .cta {
            background: linear-gradient(135deg, var(--primary), var(--secondary));
            color: white;
            text-align: center;
            padding: 100px 0;
        }

        .cta h2 {
            margin-bottom: 20px;
        }

        .cta p {
            max-width: 600px;
            margin: 0 auto 30px;
            font-size: 1.1rem;
        }

        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 15px;
        }

        .btn-light {
            background-color: white;
            color: var(--primary);
        }

        .btn-light:hover {
            background-color: var(--light);
        }

        .btn-outline-light {
            background-color: transparent;
            color: white;
            border: 2px solid white;
        }

        .btn-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }

        /* Footer */
        footer {
            background-color: var(--dark);
            color: white;
            padding: 80px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 50px;
        }

        .footer-logo {
            font-size: 1.8rem;
            font-weight: 800;
            margin-bottom: 15px;
        }

        .footer-about p {
            color: #adb5bd;
            margin-bottom: 20px;
        }

        .social-links {
            display: flex;
            gap: 15px;
        }

        .social-link {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: var(--transition);
        }

        .social-link:hover {
            background: var(--primary);
        }

        .footer-heading {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: white;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: #adb5bd;
            transition: var(--transition);
        }

        .footer-links a:hover {
            color: white;
        }

        .footer-bottom {
            text-align: center;
            padding-top: 30px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #adb5bd;
            font-size: 0.9rem;
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            h1 {
                font-size: 2.8rem;
            }
            
            h2 {
                font-size: 2.2rem;
            }
            
            .hero-content {
                flex-direction: column;
                text-align: center;
            }
            
            .hero-text {
                margin-bottom: 50px;
            }
            
            .hero-buttons {
                justify-content: center;
            }
            
            .specialization-content {
                flex-direction: column;
            }
            
            .footer-content {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 768px) {
            .nav-links, .nav-buttons {
                display: none;
            }
            
            .hamburger {
                display: flex;
            }
            
            .dashboard-content {
                grid-template-columns: 1fr;
            }
            
            .metrics {
                grid-template-columns: 1fr;
            }
            
            .platforms-grid {
                grid-template-columns: 1fr 1fr;
            }
            
            .features-grid {
                grid-template-columns: 1fr;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
            
            .footer-content {
                grid-template-columns: 1fr;
            }
        }

        @media (max-width: 576px) {
            h1 {
                font-size: 2.2rem;
            }
            
            h2 {
                font-size: 1.8rem;
            }
            
            section {
                padding: 60px 0;
            }
            
            .platforms-grid {
                grid-template-columns: 1fr;
            }
            
            .hero-buttons {
                flex-direction: column;
            }
        }

        
        /* AbeBooks CSS - All classes prefixed with abebooks-css */



.abebooks-css-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.abebooks-css-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
    text-align: center;
}

.abebooks-css-section-header p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.abebooks-css-primary-button {
    display: inline-block;
    background: #1f1d88;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
}

.abebooks-css-primary-button:hover {
    background: transparent;
    color: #1f1d88;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.abebooks-css-secondary-button {
    display: inline-block;
    background: transparent;
    color: #1f1d88;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
    margin-left: 15px;
}

.abebooks-css-secondary-button:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

/* Hero Section */
.abebooks-css-hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.abebooks-css-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.abebooks-css-hero-text {
    flex: 1;
    max-width: 600px;
    animation: abebooks-css-fadeInLeft 1s ease-out;
}

.abebooks-css-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.abebooks-css-hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.abebooks-css-hero-buttons {
    display: flex;
    align-items: center;
}

.abebooks-css-hero-image {
    flex: 1;
    text-align: center;
    animation: abebooks-css-fadeInRight 1s ease-out;
}

.abebooks-css-image-placeholder {
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 10px;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.abebooks-css-image-placeholder i {
    font-size: 5rem;
    margin-bottom: 1rem;
}

.abebooks-css-hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.abebooks-css-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.abebooks-css-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 100px;
    animation: abebooks-css-float 6s ease-in-out infinite;
}

.abebooks-css-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 300px;
    animation: abebooks-css-float 8s ease-in-out infinite 1s;
}

.abebooks-css-circle-3 {
    width: 100px;
    height: 100px;
    top: 150px;
    right: 500px;
    animation: abebooks-css-float 7s ease-in-out infinite 0.5s;
}

/* Services Overview Section */
.abebooks-css-services-overview {
    padding: 100px 0;
    background: white;
}

.abebooks-css-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.abebooks-css-service-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.abebooks-css-service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.abebooks-css-service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 1.8rem;
}

.abebooks-css-service-card h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.abebooks-css-service-card p {
    color: #666;
    margin-bottom: 20px;
}

.abebooks-css-service-features {
    list-style: none;
    text-align: left;
}

.abebooks-css-service-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.abebooks-css-service-features li:before {
    content: "✓";
    color: #1f1d88;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* How It Works Section */
.abebooks-css-how-it-works {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.abebooks-css-process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.abebooks-css-process-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 50px;
    position: relative;
}

.abebooks-css-process-step:not(:last-child):after {
    content: "";
    position: absolute;
    left: 40px;
    top: 80px;
    bottom: -50px;
    width: 2px;
    background: #1f1d88;
    opacity: 0.3;
}

.abebooks-css-step-number {
    width: 80px;
    height: 80px;
    background: #1f1d88;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: bold;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.abebooks-css-step-content {
    flex: 1;
}

.abebooks-css-step-content h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.abebooks-css-step-content p {
    color: #555;
    line-height: 1.6;
}

/* Benefits Section */
.abebooks-css-benefits-section {
    padding: 100px 0;
    background: white;
}

.abebooks-css-benefits-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.abebooks-css-benefits-text {
    flex: 1;
}

.abebooks-css-benefit-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.abebooks-css-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.abebooks-css-benefit-details h3 {
    font-size: 1.3rem;
    color: #1f1d88;
    margin-bottom: 10px;
}

.abebooks-css-benefit-details p {
    color: #666;
}

.abebooks-css-benefits-visual {
    flex: 1;
}

.abebooks-css-stats-card {
    background: linear-gradient(135deg, #1f1d88 0%, #3f4c6b 100%);
    border-radius: 10px;
    padding: 40px;
    color: white;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.abebooks-css-stat {
    text-align: center;
    margin-bottom: 30px;
}

.abebooks-css-stat:last-child {
    margin-bottom: 0;
}

.abebooks-css-stat-number {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 10px;
}

.abebooks-css-stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Features Section */
.abebooks-css-features-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.abebooks-css-features-tabs {
    max-width: 1000px;
    margin: 0 auto;
}

.abebooks-css-tabs-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.abebooks-css-tab-button {
    background: white;
    border: none;
    padding: 15px 25px;
    margin: 0 10px 10px;
    border-radius: 30px;
    font-weight: 600;
    color: #555;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.abebooks-css-tab-button.active {
    background: #1f1d88;
    color: white;
}

.abebooks-css-tab-button:hover:not(.active) {
    background: #f0f0f0;
}

.abebooks-css-tab-pane {
    display: none;
}

.abebooks-css-tab-pane.active {
    display: block;
    animation: abebooks-css-fadeIn 0.5s ease-out;
}

.abebooks-css-tab-content {
    display: flex;
    align-items: center;
    gap: 50px;
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.abebooks-css-tab-text {
    flex: 1;
}

.abebooks-css-tab-text h3 {
    font-size: 1.8rem;
    color: #1f1d88;
    margin-bottom: 20px;
}

.abebooks-css-tab-text p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.abebooks-css-tab-text ul {
    list-style: none;
}

.abebooks-css-tab-text li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.abebooks-css-tab-text li:before {
    content: "•";
    color: #1f1d88;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.abebooks-css-tab-visual {
    flex: 1;
}

/* Testimonials Section */
.abebooks-css-testimonials-section {
    padding: 100px 0;
    background: white;
}

.abebooks-css-testimonials-slider {
    max-width: 800px;
    margin: 0 auto 40px;
    position: relative;
    overflow: hidden;
    height: 300px;
}

.abebooks-css-testimonial {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.abebooks-css-testimonial.active {
    opacity: 1;
}

.abebooks-css-testimonial-content {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 40px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.abebooks-css-quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    color: #1f1d88;
    opacity: 0.2;
    font-size: 2rem;
}

.abebooks-css-testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.abebooks-css-testimonial-author {
    display: flex;
    align-items: center;
}

.abebooks-css-author-avatar {
    width: 60px;
    height: 60px;
    background: #1f1d88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 15px;
}

.abebooks-css-author-info h4 {
    color: #1f1d88;
    margin-bottom: 5px;
}

.abebooks-css-author-info p {
    color: #666;
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
}

.abebooks-css-testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.abebooks-css-nav-button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    cursor: pointer;
    transition: all 0.3s ease;
}

.abebooks-css-nav-button.active {
    background: #1f1d88;
}

/* CTA Section */
.abebooks-css-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f1d88 0%, #3f4c6b 100%);
    color: white;
    text-align: center;
}

.abebooks-css-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.abebooks-css-cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.abebooks-css-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.abebooks-css-cta-section .abebooks-css-primary-button {
    background: white;
    color: #1f1d88;
    border-color: white;
}

.abebooks-css-cta-section .abebooks-css-primary-button:hover {
    background: transparent;
    color: white;
}

.abebooks-css-cta-section .abebooks-css-secondary-button {
    background: transparent;
    color: white;
    border-color: white;
}

.abebooks-css-cta-section .abebooks-css-secondary-button:hover {
    background: white;
    color: #1f1d88;
}

/* FAQ Section */
.abebooks-css-faq-section {
    padding: 100px 0;
    background: white;
}

.abebooks-css-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.abebooks-css-faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.abebooks-css-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.abebooks-css-faq-question h3 {
    font-size: 1.2rem;
    color: #1f1d88;
    margin: 0;
}

.abebooks-css-faq-toggle {
    font-size: 1.5rem;
    color: #1f1d88;
    transition: transform 0.3s ease;
}

.abebooks-css-faq-item.active .abebooks-css-faq-toggle {
    transform: rotate(45deg);
}

.abebooks-css-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.abebooks-css-faq-item.active .abebooks-css-faq-answer {
    max-height: 500px;
}

.abebooks-css-faq-answer p {
    padding: 0 0 20px;
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes abebooks-css-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes abebooks-css-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes abebooks-css-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes abebooks-css-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .abebooks-css-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .abebooks-css-hero-text {
        margin-bottom: 50px;
    }
    
    .abebooks-css-hero-buttons {
        justify-content: center;
    }
    
    .abebooks-css-benefits-content {
        flex-direction: column;
    }
    
    .abebooks-css-tab-content {
        flex-direction: column;
    }
    
    .abebooks-css-process-step {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .abebooks-css-step-number {
        margin-right: 0;
        margin-bottom: 20px;
    }
    
    .abebooks-css-process-step:not(:last-child):after {
        left: 50%;
        top: 80px;
        bottom: -50px;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .abebooks-css-section-header h2 {
        font-size: 2rem;
    }
    
    .abebooks-css-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .abebooks-css-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .abebooks-css-secondary-button {
        margin-left: 0;
    }
    
    .abebooks-css-tabs-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .abebooks-css-tab-button {
        width: 100%;
        max-width: 300px;
        margin: 0 0 10px;
    }
    
    .abebooks-css-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Multi-Channel CSS - All classes prefixed with multi-channel */



.multi-channel-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.multi-channel-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
    text-align: center;
}

.multi-channel-section-header p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.multi-channel-primary-button {
    display: inline-block;
    background: #1f1d88;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
}

.multi-channel-primary-button:hover {
    background: transparent;
    color: #1f1d88;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.multi-channel-secondary-button {
    display: inline-block;
    background: transparent;
    color: #1f1d88;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
    margin-left: 15px;
}

.multi-channel-secondary-button:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

/* Hero Section */
.multi-channel-hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 100px;
    position: relative;
    overflow: hidden;
}

.multi-channel-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.multi-channel-hero-text {
    flex: 1;
    max-width: 600px;
    animation: multi-channel-fadeInLeft 1s ease-out;
}

.multi-channel-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.multi-channel-hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.multi-channel-hero-buttons {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
}

.multi-channel-platform-logos {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.multi-channel-platform-logo {
    display: flex;
    align-items: center;
    background: white;
    padding: 8px 15px;
    border-radius: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.multi-channel-platform-logo:hover {
    transform: translateY(-5px);
}

.multi-channel-platform-logo i {
    font-size: 1.2rem;
    margin-right: 8px;
    color: #1f1d88;
}

.multi-channel-platform-logo span {
    font-weight: 500;
    color: #333;
}

.multi-channel-hero-image {
    flex: 1;
    text-align: center;
    animation: multi-channel-fadeInRight 1s ease-out;
}

.multi-channel-dashboard-preview {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.multi-channel-dashboard-header {
    background: #1f1d88;
    color: white;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.multi-channel-dashboard-title {
    font-weight: 600;
}

.multi-channel-dashboard-controls {
    display: flex;
    gap: 8px;
}

.multi-channel-dashboard-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.multi-channel-dashboard-content {
    padding: 20px;
}

.multi-channel-metric-cards {
    display: flex;
    justify-content: space-between;
    margin-bottom: 25px;
}

.multi-channel-metric-card {
    text-align: center;
    flex: 1;
    margin: 0 5px;
}

.multi-channel-metric-value {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f1d88;
    margin-bottom: 5px;
}

.multi-channel-metric-label {
    font-size: 0.8rem;
    color: #666;
}

.multi-channel-channel-performance {
    margin-top: 20px;
}

.multi-channel-channel-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.multi-channel-channel-name {
    width: 80px;
    font-weight: 500;
    color: #333;
}

.multi-channel-channel-bar {
    flex: 1;
    height: 8px;
    background: #f0f0f0;
    border-radius: 4px;
    margin: 0 15px;
    overflow: hidden;
}

.multi-channel-channel-fill {
    height: 100%;
    background: linear-gradient(90deg, #1f1d88, #3f4c6b);
    border-radius: 4px;
    transition: width 1s ease;
}

.multi-channel-channel-value {
    width: 40px;
    text-align: right;
    font-weight: 600;
    color: #1f1d88;
}

.multi-channel-hero-background-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.multi-channel-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.multi-channel-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 100px;
    animation: multi-channel-float 6s ease-in-out infinite;
}

.multi-channel-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 300px;
    animation: multi-channel-float 8s ease-in-out infinite 1s;
}

.multi-channel-circle-3 {
    width: 100px;
    height: 100px;
    top: 150px;
    right: 500px;
    animation: multi-channel-float 7s ease-in-out infinite 0.5s;
}

/* Platforms Section */
.multi-channel-platforms-section {
    padding: 100px 0;
    background: white;
}

.multi-channel-platforms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.multi-channel-platform-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.multi-channel-platform-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #1f1d88, #3f4c6b);
}

.multi-channel-platform-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.multi-channel-platform-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.multi-channel-platform-card h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.multi-channel-platform-card p {
    color: #666;
    margin-bottom: 20px;
}

.multi-channel-platform-features {
    list-style: none;
    text-align: left;
}

.multi-channel-platform-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.multi-channel-platform-features li:before {
    content: "âœ“";
    color: #1f1d88;
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Dashboard Section */
.multi-channel-dashboard-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.multi-channel-dashboard-showcase {
    display: flex;
    align-items: center;
    gap: 50px;
}

.multi-channel-dashboard-features {
    flex: 1;
}

.multi-channel-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.multi-channel-feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.multi-channel-feature-content h3 {
    font-size: 1.3rem;
    color: #1f1d88;
    margin-bottom: 10px;
}

.multi-channel-feature-content p {
    color: #666;
}

.multi-channel-dashboard-visual {
    flex: 1;
}

.multi-channel-dashboard-mockup {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    max-width: 500px;
    margin: 0 auto;
}

.multi-channel-mockup-header {
    background: #1f1d88;
    padding: 15px 20px;
}

.multi-channel-mockup-controls {
    display: flex;
    gap: 8px;
}

.multi-channel-mockup-controls span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.multi-channel-mockup-content {
    display: flex;
    height: 300px;
}

.multi-channel-mockup-sidebar {
    width: 200px;
    background: #f9f9f9;
    padding: 20px 0;
}

.multi-channel-mockup-menu {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
}

.multi-channel-mockup-menu.active {
    background: white;
    color: #1f1d88;
    border-right: 3px solid #1f1d88;
}

.multi-channel-mockup-menu i {
    margin-right: 10px;
    width: 20px;
    text-align: center;
}

.multi-channel-mockup-main {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
}

.multi-channel-mockup-charts {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 150px;
    margin-bottom: 20px;
}

.multi-channel-mockup-chart {
    text-align: center;
    flex: 1;
}

.multi-channel-mockup-chart-bar {
    background: linear-gradient(to top, #1f1d88, #3f4c6b);
    width: 30px;
    margin: 0 auto 10px;
    border-radius: 3px 3px 0 0;
    transition: height 0.5s ease;
}

.multi-channel-mockup-chart-label {
    font-size: 0.8rem;
    color: #666;
}

.multi-channel-mockup-stats {
    display: flex;
    justify-content: space-around;
}

.multi-channel-mockup-stat {
    text-align: center;
}

.multi-channel-mockup-stat-value {
    font-size: 1.8rem;
    font-weight: bold;
    color: #1f1d88;
    margin-bottom: 5px;
}

.multi-channel-mockup-stat-label {
    font-size: 0.8rem;
    color: #666;
}

/* Benefits Section */
.multi-channel-benefits-section {
    padding: 100px 0;
    background: white;
}

.multi-channel-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.multi-channel-benefit-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.multi-channel-benefit-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.multi-channel-benefit-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 2rem;
    font-weight: bold;
    color: #f0f0f0;
    line-height: 1;
}

.multi-channel-benefit-card h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.multi-channel-benefit-card p {
    color: #666;
    margin-bottom: 20px;
}

.multi-channel-benefit-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto;
}

/* Process Section */
.multi-channel-process-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.multi-channel-process-steps {
    max-width: 800px;
    margin: 0 auto;
}

.multi-channel-process-step {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
}

.multi-channel-step-visual {
    position: relative;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.multi-channel-step-icon {
    width: 80px;
    height: 80px;
    background: #1f1d88;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    position: relative;
    z-index: 2;
}

.multi-channel-step-connector {
    width: 2px;
    height: 60px;
    background: #1f1d88;
    opacity: 0.3;
    margin-top: 10px;
}

.multi-channel-process-step:last-child .multi-channel-step-connector {
    display: none;
}

.multi-channel-step-content {
    flex: 1;
}

.multi-channel-step-content h3 {
    font-size: 1.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.multi-channel-step-content p {
    color: #555;
    line-height: 1.6;
}

/* Testimonials Section */
.multi-channel-testimonials-section {
    padding: 100px 0;
    background: white;
}

.multi-channel-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.multi-channel-testimonial-card {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.multi-channel-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.multi-channel-quote-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #1f1d88;
    opacity: 0.2;
    font-size: 2rem;
}

.multi-channel-testimonial-content p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

.multi-channel-testimonial-author {
    display: flex;
    align-items: center;
}

.multi-channel-author-avatar {
    width: 50px;
    height: 50px;
    background: #1f1d88;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 15px;
}

.multi-channel-author-info h4 {
    color: #1f1d88;
    margin-bottom: 5px;
}

.multi-channel-author-info p {
    color: #666;
    margin: 0;
    font-style: normal;
    font-size: 0.9rem;
}

/* CTA Section */
.multi-channel-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f1d88 0%, #3f4c6b 100%);
    color: white;
    text-align: center;
}

.multi-channel-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.multi-channel-cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.multi-channel-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.multi-channel-cta-section .multi-channel-primary-button {
    background: white;
    color: #1f1d88;
    border-color: white;
}

.multi-channel-cta-section .multi-channel-primary-button:hover {
    background: transparent;
    color: white;
}

.multi-channel-cta-section .multi-channel-secondary-button {
    background: transparent;
    color: white;
    border-color: white;
}

.multi-channel-cta-section .multi-channel-secondary-button:hover {
    background: white;
    color: #1f1d88;
}

.multi-channel-cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.multi-channel-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.multi-channel-cta-feature i {
    color: #a8c0ff;
}

/* FAQ Section */
.multi-channel-faq-section {
    padding: 100px 0;
    background: white;
}

.multi-channel-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.multi-channel-faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.multi-channel-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.multi-channel-faq-question h3 {
    font-size: 1.2rem;
    color: #1f1d88;
    margin: 0;
}

.multi-channel-faq-toggle {
    font-size: 1.5rem;
    color: #1f1d88;
    transition: transform 0.3s ease;
}

.multi-channel-faq-item.active .multi-channel-faq-toggle {
    transform: rotate(45deg);
}

.multi-channel-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.multi-channel-faq-item.active .multi-channel-faq-answer {
    max-height: 500px;
}

.multi-channel-faq-answer p {
    padding: 0 0 20px;
    color: #666;
    line-height: 1.6;
}

/* Animations */
@keyframes multi-channel-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes multi-channel-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes multi-channel-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes multi-channel-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .multi-channel-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .multi-channel-hero-text {
        margin-bottom: 50px;
    }
    
    .multi-channel-hero-buttons {
        justify-content: center;
    }
    
    .multi-channel-dashboard-showcase {
        flex-direction: column;
    }
    
    .multi-channel-process-step {
        flex-direction: column;
        text-align: center;
    }
    
    .multi-channel-step-visual {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .multi-channel-section-header h2 {
        font-size: 2rem;
    }
    
    .multi-channel-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .multi-channel-hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .multi-channel-secondary-button {
        margin-left: 0;
    }
    
    .multi-channel-platforms-grid {
        grid-template-columns: 1fr;
    }
    
    .multi-channel-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .multi-channel-cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* Solutions Page Specific Styles */

/* Hero Section Extensions */
.multi-channel-solution-highlights {
    display: flex;
    gap: 15px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.multi-channel-highlight-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 15px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.multi-channel-highlight-item:hover {
    transform: translateY(-3px);
    background: white;
}

.multi-channel-highlight-item i {
    color: #1f1d88;
    margin-right: 8px;
}

.multi-channel-highlight-item span {
    font-weight: 500;
    color: #333;
}

.multi-channel-solutions-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
}

.multi-channel-solution-orbit {
    position: relative;
    width: 300px;
    height: 300px;
}

.multi-channel-orbit-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1f1d88, #3f4c6b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(31, 29, 136, 0.3);
    z-index: 2;
}

.multi-channel-orbit-item {
    position: absolute;
    width: 70px;
    height: 70px;
    background: white;
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    animation: multi-channel-orbit 20s linear infinite;
}

.multi-channel-orbit-item:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.multi-channel-orbit-item i {
    color: #1f1d88;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.multi-channel-orbit-item span {
    font-size: 0.7rem;
    font-weight: 500;
    color: #333;
}

.multi-channel-orbit-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.multi-channel-orbit-2 {
    top: 25%;
    right: 10%;
    animation-delay: -5s;
}

.multi-channel-orbit-3 {
    bottom: 25%;
    right: 10%;
    animation-delay: -10s;
}

.multi-channel-orbit-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: -15s;
}

.multi-channel-orbit-5 {
    bottom: 25%;
    left: 10%;
    animation-delay: -20s;
}

@keyframes multi-channel-orbit {
    0% {
        transform: rotate(0deg) translateX(150px) rotate(0deg);
    }
    100% {
        transform: rotate(360deg) translateX(150px) rotate(-360deg);
    }
}

/* Solutions Navigation */
.multi-channel-solutions-nav {
    background: white;
    padding: 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

.multi-channel-solution-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.multi-channel-solution-tab {
    background: none;
    border: none;
    padding: 20px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-weight: 500;
    border-bottom: 3px solid transparent;
}

.multi-channel-solution-tab.active {
    color: #1f1d88;
    border-bottom-color: #1f1d88;
}

.multi-channel-solution-tab:hover:not(.active) {
    color: #1f1d88;
    background: #f8f9ff;
}

.multi-channel-solution-tab i {
    font-size: 1.2rem;
}

/* Solution Sections */
.multi-channel-solution-section {
    padding: 80px 0;
    display: none;
}

.multi-channel-solution-section.active {
    display: block;
    animation: multi-channel-fadeIn 0.5s ease-out;
}

.multi-channel-solution-section:nth-child(even) {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.multi-channel-solution-content {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;
}

.multi-channel-solution-features {
    flex: 1;
}

.multi-channel-solution-feature {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.multi-channel-solution-feature .multi-channel-feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    margin-right: 20px;
    flex-shrink: 0;
}

.multi-channel-solution-feature h3 {
    font-size: 1.3rem;
    color: #1f1d88;
    margin-bottom: 8px;
}

.multi-channel-solution-feature p {
    color: #666;
    line-height: 1.6;
}

.multi-channel-solution-package {
    flex: 0 0 350px;
}

.multi-channel-package-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 100px;
}

.multi-channel-package-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.multi-channel-package-header h3 {
    color: #1f1d88;
    margin-bottom: 10px;
}

.multi-channel-package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
}

.multi-channel-price {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f1d88;
}

.multi-channel-period {
    color: #666;
    font-size: 1rem;
}

.multi-channel-package-features {
    margin-bottom: 25px;
}

.multi-channel-package-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f5f5f5;
}

.multi-channel-package-feature:last-child {
    border-bottom: none;
}

.multi-channel-package-feature i {
    color: #1f1d88;
}

.multi-channel-package-feature span {
    color: #555;
}

.multi-channel-enterprise-card {
    background: linear-gradient(135deg, #1f1d88 0%, #3f4c6b 100%);
    color: white;
}

.multi-channel-enterprise-card .multi-channel-package-header h3,
.multi-channel-enterprise-card .multi-channel-price,
.multi-channel-enterprise-card .multi-channel-package-feature i,
.multi-channel-enterprise-card .multi-channel-package-feature span {
    color: white;
}

.multi-channel-enterprise-card .multi-channel-package-header {
    border-bottom-color: rgba(255, 255, 255, 0.2);
}

.multi-channel-enterprise-card .multi-channel-package-feature {
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

/* Solution Testimonials & Stats */
.multi-channel-solution-testimonial {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.multi-channel-solution-stats {
    display: flex;
    justify-content: space-around;
    margin-top: 50px;
    flex-wrap: wrap;
    gap: 20px;
}

.multi-channel-stat-card {
    text-align: center;
    flex: 1;
    min-width: 200px;
}

.multi-channel-stat-value {
    font-size: 3rem;
    font-weight: bold;
    color: #1f1d88;
    margin-bottom: 10px;
}

.multi-channel-stat-label {
    color: #666;
    font-weight: 500;
}

/* Enterprise Features */
.multi-channel-enterprise-features {
    margin-top: 50px;
}

.multi-channel-enterprise-features h3 {
    text-align: center;
    color: #1f1d88;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.multi-channel-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.multi-channel-feature-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.multi-channel-feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.multi-channel-feature-item i {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.multi-channel-feature-item h4 {
    color: #1f1d88;
    margin-bottom: 10px;
}

.multi-channel-feature-item p {
    color: #666;
    line-height: 1.5;
}

/* Industry Solutions */
.multi-channel-industry-tabs {
    margin-top: 50px;
}

.multi-channel-industry-tab-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
}

.multi-channel-industry-tab {
    background: white;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    padding: 15px 25px;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    color: #666;
    font-weight: 500;
}

.multi-channel-industry-tab.active {
    background: #1f1d88;
    color: white;
    border-color: #1f1d88;
}

.multi-channel-industry-tab:hover:not(.active) {
    border-color: #1f1d88;
    color: #1f1d88;
}

.multi-channel-industry-content {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.multi-channel-industry-panel {
    display: none;
}

.multi-channel-industry-panel.active {
    display: block;
    animation: multi-channel-fadeIn 0.5s ease-out;
}

.multi-channel-industry-hero {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
}

.multi-channel-industry-text {
    flex: 1;
}

.multi-channel-industry-text h3 {
    color: #1f1d88;
    margin-bottom: 15px;
    font-size: 1.8rem;
}

.multi-channel-industry-text p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.6;
}

.multi-channel-industry-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.multi-channel-industry-feature {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9ff;
    padding: 10px 15px;
    border-radius: 20px;
}

.multi-channel-industry-feature i {
    color: #1f1d88;
}

.multi-channel-industry-feature span {
    font-weight: 500;
    color: #333;
}

.multi-channel-industry-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.multi-channel-fashion-mockup,
.multi-channel-electronics-mockup {
    background: #f9f9f9;
    border-radius: 10px;
    padding: 20px;
    width: 100%;
    max-width: 300px;
}

.multi-channel-fashion-item,
.multi-channel-electronics-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.multi-channel-fashion-image,
.multi-channel-electronics-image {
    height: 150px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
}

.multi-channel-fashion-details,
.multi-channel-electronics-details {
    padding: 15px;
}

.multi-channel-fashion-details h4,
.multi-channel-electronics-details h4 {
    color: #1f1d88;
    margin-bottom: 5px;
}

.multi-channel-fashion-details p,
.multi-channel-electronics-details p {
    color: #666;
    font-size: 0.9rem;
}

.multi-channel-industry-use-cases {
    margin-top: 40px;
}

.multi-channel-industry-use-cases h4 {
    color: #1f1d88;
    margin-bottom: 20px;
    text-align: center;
}

.multi-channel-use-case-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.multi-channel-use-case {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border-left: 4px solid #1f1d88;
}

.multi-channel-use-case h5 {
    color: #1f1d88;
    margin-bottom: 10px;
}

.multi-channel-use-case p {
    color: #666;
    line-height: 1.5;
}

/* Solution Finder */
.multi-channel-solution-finder {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.multi-channel-finder-wizard {
    background: white;
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-width: 800px;
    margin: 0 auto;
}

.multi-channel-finder-progress {
    margin-bottom: 40px;
}

.multi-channel-progress-bar {
    height: 6px;
    background: #f0f0f0;
    border-radius: 3px;
    margin-bottom: 20px;
    overflow: hidden;
}

.multi-channel-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #1f1d88, #3f4c6b);
    border-radius: 3px;
    transition: width 0.3s ease;
}

.multi-channel-progress-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
}

.multi-channel-progress-step {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #999;
    position: relative;
    z-index: 2;
}

.multi-channel-progress-step.active {
    background: #1f1d88;
    color: white;
}

.multi-channel-finder-question h3 {
    color: #1f1d88;
    margin-bottom: 25px;
    text-align: center;
}

.multi-channel-finder-options {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 30px;
}

.multi-channel-finder-option {
    position: relative;
}

.multi-channel-finder-option input {
    position: absolute;
    opacity: 0;
}

.multi-channel-finder-option label {
    display: block;
    padding: 20px;
    background: #f9f9f9;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.multi-channel-finder-option input:checked + label {
    border-color: #1f1d88;
    background: #f8f9ff;
}

.multi-channel-finder-option label:hover {
    border-color: #1f1d88;
}

.multi-channel-option-title {
    display: block;
    font-weight: 600;
    color: #1f1d88;
    margin-bottom: 5px;
}

.multi-channel-option-desc {
    display: block;
    color: #666;
    font-size: 0.9rem;
}

.multi-channel-finder-actions {
    display: flex;
    justify-content: space-between;
}

/* Responsive Styles for Solutions Page */
@media (max-width: 992px) {
    .multi-channel-solution-content {
        flex-direction: column;
    }
    
    .multi-channel-solution-package {
        flex: none;
    }
    
    .multi-channel-package-card {
        position: static;
    }
    
    .multi-channel-industry-hero {
        flex-direction: column;
    }
    
    .multi-channel-solution-tabs {
        flex-direction: column;
        align-items: center;
    }
    
    .multi-channel-industry-tab-nav {
        flex-direction: column;
        align-items: center;
    }
    
    .multi-channel-industry-tab {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .multi-channel-solution-highlights {
        justify-content: center;
    }
    
    .multi-channel-orbit-item {
        width: 60px;
        height: 60px;
    }
    
    .multi-channel-orbit-item span {
        font-size: 0.6rem;
    }
    
    .multi-channel-finder-options {
        gap: 10px;
    }
    
    .multi-channel-finder-option label {
        padding: 15px;
    }
}

/* Pricing CSS - All classes prefixed with pricing-css */



.pricing-css-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.pricing-css-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
    text-align: center;
}

.pricing-css-section-header p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.pricing-css-primary-button {
    display: inline-block;
    background: #1f1d88;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
}

.pricing-css-primary-button:hover {
    background: transparent;
    color: #1f1d88;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.pricing-css-secondary-button {
    display: inline-block;
    background: transparent;
    color: #1f1d88;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
    margin-left: 15px;
}

.pricing-css-secondary-button:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

/* Hero Section */
.pricing-css-hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.pricing-css-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.pricing-css-hero-text {
    flex: 1;
    max-width: 600px;
    animation: pricing-css-fadeInLeft 1s ease-out;
}

.pricing-css-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.pricing-css-hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.pricing-css-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2rem;
}

.pricing-css-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.pricing-css-feature-item i {
    color: #1f1d88;
}

.pricing-css-feature-item span {
    font-weight: 500;
    color: #333;
}

.pricing-css-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: pricing-css-fadeInRight 1s ease-out;
}

.pricing-css-visual-element {
    position: relative;
    width: 400px;
    height: 400px;
}

.pricing-css-visual-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.pricing-css-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-css-visual-card i {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.pricing-css-visual-card h4 {
    color: #1f1d88;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.pricing-css-visual-card p {
    color: #666;
    font-size: 0.9rem;
}

.pricing-css-card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    animation: pricing-css-float 6s ease-in-out infinite;
}

.pricing-css-card-2 {
    bottom: 50px;
    left: 0;
    width: 180px;
    animation: pricing-css-float 7s ease-in-out infinite 1s;
}

.pricing-css-card-3 {
    bottom: 50px;
    right: 0;
    width: 180px;
    animation: pricing-css-float 8s ease-in-out infinite 0.5s;
}

.pricing-css-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.pricing-css-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.pricing-css-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 100px;
    animation: pricing-css-float 6s ease-in-out infinite;
}

.pricing-css-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 300px;
    animation: pricing-css-float 8s ease-in-out infinite 1s;
}

.pricing-css-circle-3 {
    width: 100px;
    height: 100px;
    top: 150px;
    right: 500px;
    animation: pricing-css-float 7s ease-in-out infinite 0.5s;
}

/* Quotation Section */
.pricing-css-quotation-section {
    padding: 100px 0;
    background: white;
}

.pricing-css-quotation-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.pricing-css-quotation-form-container {
    flex: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    border: 1px solid #f0f0f0;
    position: sticky;
    top: 100px;
}

.pricing-css-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.pricing-css-form-header h2 {
    color: #1f1d88;
    margin-bottom: 10px;
    font-size: 2rem;
}

.pricing-css-form-header p {
    color: #666;
    line-height: 1.6;
}

.pricing-css-quotation-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pricing-css-form-group {
    display: flex;
    flex-direction: column;
}

.pricing-css-form-row {
    flex-direction: row;
    gap: 15px;
}

.pricing-css-form-row .pricing-css-form-field {
    flex: 1;
}

.pricing-css-form-field {
    display: flex;
    flex-direction: column;
}

.pricing-css-form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.pricing-css-form-group input,
.pricing-css-form-group select,
.pricing-css-form-group textarea {
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.pricing-css-form-group input:focus,
.pricing-css-form-group select:focus,
.pricing-css-form-group textarea:focus {
    outline: none;
    border-color: #1f1d88;
    box-shadow: 0 0 0 3px rgba(31, 29, 136, 0.1);
}

.pricing-css-checkbox-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 5px;
}

.pricing-css-checkbox-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-css-checkbox-item input {
    width: 18px;
    height: 18px;
}

.pricing-css-checkbox-item label {
    font-weight: normal;
    margin-bottom: 0;
    cursor: pointer;
}

.pricing-css-form-submit {
    margin-top: 10px;
    text-align: center;
}

.pricing-css-submit-button {
    background: #1f1d88;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.pricing-css-submit-button:hover {
    background: #151466;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.3);
}

.pricing-css-form-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.pricing-css-quotation-details {
    flex: 1;
}

.pricing-css-details-content h2 {
    color: #1f1d88;
    margin-bottom: 15px;
    font-size: 2rem;
}

.pricing-css-details-content > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.pricing-css-details-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.pricing-css-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.pricing-css-detail-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.pricing-css-detail-text h4 {
    color: #1f1d88;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.pricing-css-detail-text p {
    color: #666;
    line-height: 1.5;
}

.pricing-css-trust-indicators {
    background: #f8f9ff;
    border-radius: 10px;
    padding: 30px;
    border-left: 4px solid #1f1d88;
}

.pricing-css-trust-indicators h3 {
    color: #1f1d88;
    margin-bottom: 20px;
    text-align: center;
}

.pricing-css-trust-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.pricing-css-trust-stat {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.pricing-css-stat-number {
    font-size: 2rem;
    font-weight: bold;
    color: #1f1d88;
    margin-bottom: 5px;
}

.pricing-css-stat-label {
    color: #666;
    font-size: 0.9rem;
}

/* Factors Section */
.pricing-css-factors-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.pricing-css-factors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.pricing-css-factor-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.pricing-css-factor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.pricing-css-factor-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.pricing-css-factor-card h3 {
    font-size: 1.3rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.pricing-css-factor-card p {
    color: #666;
    line-height: 1.5;
}

/* FAQ Section */
.pricing-css-faq-section {
    padding: 80px 0;
    background: white;
}

.pricing-css-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.pricing-css-faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.pricing-css-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    cursor: pointer;
}

.pricing-css-faq-question h3 {
    font-size: 1.2rem;
    color: #1f1d88;
    margin: 0;
}

.pricing-css-faq-toggle {
    font-size: 1.5rem;
    color: #1f1d88;
    transition: transform 0.3s ease;
}

.pricing-css-faq-item.active .pricing-css-faq-toggle {
    transform: rotate(45deg);
}

.pricing-css-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.pricing-css-faq-item.active .pricing-css-faq-answer {
    max-height: 500px;
}

.pricing-css-faq-answer p {
    padding: 0 0 20px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.pricing-css-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f1d88 0%, #3f4c6b 100%);
    color: white;
    text-align: center;
}

.pricing-css-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.pricing-css-cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.pricing-css-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.pricing-css-cta-section .pricing-css-primary-button {
    background: white;
    color: #1f1d88;
    border-color: white;
}

.pricing-css-cta-section .pricing-css-primary-button:hover {
    background: transparent;
    color: white;
}

.pricing-css-cta-section .pricing-css-secondary-button {
    background: transparent;
    color: white;
    border-color: white;
}

.pricing-css-cta-section .pricing-css-secondary-button:hover {
    background: white;
    color: #1f1d88;
}

.pricing-css-cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pricing-css-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.pricing-css-cta-feature i {
    color: #a8c0ff;
}

/* Animations */
@keyframes pricing-css-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pricing-css-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pricing-css-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes pricing-css-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .pricing-css-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .pricing-css-hero-text {
        margin-bottom: 50px;
    }
    
    .pricing-css-quotation-content {
        flex-direction: column;
    }
    
    .pricing-css-quotation-form-container {
        position: static;
    }
    
    .pricing-css-checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .pricing-css-form-row {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .pricing-css-section-header h2 {
        font-size: 2rem;
    }
    
    .pricing-css-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .pricing-css-visual-element {
        width: 300px;
        height: 300px;
    }
    
    .pricing-css-visual-card {
        padding: 20px;
    }
    
    .pricing-css-card-1,
    .pricing-css-card-2,
    .pricing-css-card-3 {
        width: 150px;
    }
    
    .pricing-css-quotation-form-container {
        padding: 30px 20px;
    }
    
    .pricing-css-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .pricing-css-secondary-button {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .pricing-css-cta-features {
        flex-direction: column;
        gap: 15px;
    }
}

/* About CSS - All classes prefixed with about-css */



.about-css-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.about-css-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
    text-align: center;
}

.about-css-section-header p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.about-css-primary-button {
    display: inline-block;
    background: #1f1d88;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
}

.about-css-primary-button:hover {
    background: transparent;
    color: #1f1d88;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.about-css-secondary-button {
    display: inline-block;
    background: transparent;
    color: #1f1d88;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
    margin-left: 15px;
}

.about-css-secondary-button:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

/* Hero Section */
.about-css-hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.about-css-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.about-css-hero-text {
    flex: 1;
    max-width: 600px;
    animation: about-css-fadeInLeft 1s ease-out;
}

.about-css-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-css-hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.about-css-hero-stats {
    display: flex;
    gap: 30px;
    margin-top: 2rem;
}

.about-css-stat {
    text-align: center;
}

.about-css-stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f1d88;
    margin-bottom: 5px;
}

.about-css-stat-label {
    color: #666;
    font-size: 0.9rem;
    font-weight: 500;
}

.about-css-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: about-css-fadeInRight 1s ease-out;
}

.about-css-team-visual {
    position: relative;
    width: 400px;
    height: 400px;
}

.about-css-team-member {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.about-css-team-member:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.about-css-member-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-css-member-info h4 {
    color: #1f1d88;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.about-css-member-info p {
    color: #666;
    font-size: 0.9rem;
}

.about-css-member-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: about-css-float 6s ease-in-out infinite;
}

.about-css-member-2 {
    top: 30%;
    right: 0;
    animation: about-css-float 7s ease-in-out infinite 1s;
}

.about-css-member-3 {
    bottom: 30%;
    left: 0;
    animation: about-css-float 8s ease-in-out infinite 0.5s;
}

.about-css-member-4 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation: about-css-float 6.5s ease-in-out infinite 1.5s;
}

.about-css-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.about-css-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.about-css-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 100px;
    animation: about-css-float 6s ease-in-out infinite;
}

.about-css-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 300px;
    animation: about-css-float 8s ease-in-out infinite 1s;
}

.about-css-circle-3 {
    width: 100px;
    height: 100px;
    top: 150px;
    right: 500px;
    animation: about-css-float 7s ease-in-out infinite 0.5s;
}

/* Story Section */
.about-css-story-section {
    padding: 100px 0;
    background: white;
}

.about-css-story-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.about-css-story-timeline {
    flex: 2;
    position: relative;
}

.about-css-story-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #1f1d88;
    opacity: 0.2;
}

.about-css-timeline-item {
    display: flex;
    margin-bottom: 40px;
    position: relative;
}

.about-css-timeline-year {
    width: 60px;
    height: 60px;
    background: #1f1d88;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 30px;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.about-css-timeline-content {
    flex: 1;
    padding-top: 10px;
}

.about-css-timeline-content h3 {
    color: #1f1d88;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.about-css-timeline-content p {
    color: #666;
    line-height: 1.6;
}

.about-css-story-values {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-css-value-card {
    background: #f8f9ff;
    border-radius: 10px;
    padding: 30px;
    border-left: 4px solid #1f1d88;
}

.about-css-value-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.about-css-value-card h3 {
    color: #1f1d88;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.about-css-value-card p {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.about-css-values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-css-values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.about-css-value-item {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.about-css-value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-css-value-number {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 3rem;
    font-weight: bold;
    color: #f0f0f0;
    line-height: 1;
}

.about-css-value-content {
    text-align: center;
}

.about-css-value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.about-css-value-content h3 {
    font-size: 1.4rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.about-css-value-content p {
    color: #666;
    line-height: 1.6;
}

/* Team Section */
.about-css-team-section {
    padding: 100px 0;
    background: white;
}

.about-css-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.about-css-team-member-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.about-css-team-member-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-css-member-image {
    height: 200px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 4rem;
}

.about-css-member-info {
    padding: 30px 20px;
}

.about-css-member-info h3 {
    color: #1f1d88;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.about-css-member-role {
    color: #1f1d88;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1rem;
}

.about-css-member-bio {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.about-css-member-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.about-css-member-social a {
    width: 35px;
    height: 35px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
}

.about-css-member-social a:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-3px);
}

.about-css-team-cta {
    background: #f8f9ff;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    border-left: 4px solid #1f1d88;
}

.about-css-team-cta h3 {
    color: #1f1d88;
    margin-bottom: 15px;
    font-size: 1.5rem;
}

.about-css-team-cta p {
    color: #666;
    margin-bottom: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Achievements Section */
.about-css-achievements-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.about-css-achievements-content {
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.about-css-awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-css-award-card {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.about-css-award-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.about-css-award-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: white;
    font-size: 2rem;
}

.about-css-award-card h3 {
    font-size: 1.3rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.about-css-award-card p {
    color: #666;
    line-height: 1.5;
}

.about-css-clients-section h3 {
    text-align: center;
    color: #1f1d88;
    margin-bottom: 30px;
    font-size: 1.8rem;
}

.about-css-clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.about-css-client-logo {
    background: white;
    border-radius: 10px;
    padding: 25px 20px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.about-css-client-logo:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.about-css-client-logo i {
    font-size: 2rem;
    color: #1f1d88;
}

.about-css-client-logo span {
    font-weight: 500;
    color: #333;
}

/* Culture Section */
.about-css-culture-section {
    padding: 100px 0;
    background: white;
}

.about-css-culture-content {
    display: flex;
    gap: 50px;
    align-items: center;
}

.about-css-culture-features {
    flex: 2;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-css-culture-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.about-css-culture-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.about-css-culture-text h3 {
    color: #1f1d88;
    margin-bottom: 10px;
    font-size: 1.3rem;
}

.about-css-culture-text p {
    color: #666;
    line-height: 1.5;
}

.about-css-culture-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-css-culture-stats {
    background: #f8f9ff;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    border-left: 4px solid #1f1d88;
    min-width: 250px;
}

.about-css-culture-stat {
    margin-bottom: 25px;
}

.about-css-culture-stat:last-child {
    margin-bottom: 0;
}

.about-css-culture-number {
    font-size: 2.5rem;
    font-weight: bold;
    color: #1f1d88;
    margin-bottom: 5px;
}

.about-css-culture-label {
    color: #666;
    font-size: 0.9rem;
}

/* CTA Section */
.about-css-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f1d88 0%, #3f4c6b 100%);
    color: white;
    text-align: center;
}

.about-css-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.about-css-cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.about-css-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.about-css-cta-section .about-css-primary-button {
    background: white;
    color: #1f1d88;
    border-color: white;
}

.about-css-cta-section .about-css-primary-button:hover {
    background: transparent;
    color: white;
}

.about-css-cta-section .about-css-secondary-button {
    background: transparent;
    color: white;
    border-color: white;
}

.about-css-cta-section .about-css-secondary-button:hover {
    background: white;
    color: #1f1d88;
}

.about-css-cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.about-css-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.about-css-cta-feature i {
    color: #a8c0ff;
}

/* Animations */
@keyframes about-css-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes about-css-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes about-css-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes about-css-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-css-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-css-hero-text {
        margin-bottom: 50px;
    }
    
    .about-css-hero-stats {
        justify-content: center;
    }
    
    .about-css-story-content {
        flex-direction: column;
    }
    
    .about-css-culture-content {
        flex-direction: column;
    }
    
    .about-css-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .about-css-section-header h2 {
        font-size: 2rem;
    }
    
    .about-css-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .about-css-hero-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .about-css-team-visual {
        width: 300px;
        height: 300px;
    }
    
    .about-css-values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-css-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .about-css-secondary-button {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .about-css-cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .about-css-clients-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Contact CSS - All classes prefixed with contact-css */



.contact-css-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.contact-css-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 1rem;
    text-align: center;
}

.contact-css-section-header p {
    font-size: 1.1rem;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
}

/* Buttons */
.contact-css-primary-button {
    display: inline-block;
    background: #1f1d88;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
}

.contact-css-primary-button:hover {
    background: transparent;
    color: #1f1d88;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.contact-css-secondary-button {
    display: inline-block;
    background: transparent;
    color: #1f1d88;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
    margin-left: 15px;
}

.contact-css-secondary-button:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

/* Hero Section */
.contact-css-hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.contact-css-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.contact-css-hero-text {
    flex: 1;
    max-width: 600px;
    animation: contact-css-fadeInLeft 1s ease-out;
}

.contact-css-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.contact-css-hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.contact-css-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 2rem;
}

.contact-css-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.7);
    padding: 10px 20px;
    border-radius: 25px;
    backdrop-filter: blur(10px);
}

.contact-css-feature-item i {
    color: #1f1d88;
}

.contact-css-feature-item span {
    font-weight: 500;
    color: #333;
}

.contact-css-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: contact-css-fadeInRight 1s ease-out;
}

.contact-css-visual-element {
    position: relative;
    width: 400px;
    height: 400px;
}

.contact-css-visual-card {
    position: absolute;
    background: white;
    border-radius: 15px;
    padding: 25px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-css-visual-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-css-visual-card i {
    font-size: 2.5rem;
    color: #1f1d88;
    margin-bottom: 15px;
}

.contact-css-visual-card h4 {
    color: #1f1d88;
    margin-bottom: 8px;
    font-size: 1.2rem;
}

.contact-css-visual-card p {
    color: #666;
    font-size: 0.9rem;
}

.contact-css-card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 200px;
    animation: contact-css-float 6s ease-in-out infinite;
}

.contact-css-card-2 {
    bottom: 50px;
    left: 0;
    width: 180px;
    animation: contact-css-float 7s ease-in-out infinite 1s;
}

.contact-css-card-3 {
    bottom: 50px;
    right: 0;
    width: 180px;
    animation: contact-css-float 8s ease-in-out infinite 0.5s;
}

.contact-css-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.contact-css-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.contact-css-circle-1 {
    width: 200px;
    height: 200px;
    top: -50px;
    right: 100px;
    animation: contact-css-float 6s ease-in-out infinite;
}

.contact-css-circle-2 {
    width: 150px;
    height: 150px;
    bottom: 50px;
    right: 300px;
    animation: contact-css-float 8s ease-in-out infinite 1s;
}

.contact-css-circle-3 {
    width: 100px;
    height: 100px;
    top: 150px;
    right: 500px;
    animation: contact-css-float 7s ease-in-out infinite 0.5s;
}

/* Main Contact Section */
.contact-css-main-section {
    padding: 100px 0;
    background: white;
}

.contact-css-main-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.contact-css-form-container {
    flex: 1;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    padding: 40px;
    border: 1px solid #f0f0f0;
}

.contact-css-form-header {
    text-align: center;
    margin-bottom: 30px;
}

.contact-css-form-header h2 {
    color: #1f1d88;
    margin-bottom: 10px;
    font-size: 2rem;
}

.contact-css-form-header p {
    color: #666;
    line-height: 1.6;
}

.contact-css-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-css-form-group {
    display: flex;
    flex-direction: column;
}

.contact-css-form-row {
    flex-direction: row;
    gap: 15px;
}

.contact-css-form-row .contact-css-form-field {
    flex: 1;
}

.contact-css-form-field {
    display: flex;
    flex-direction: column;
}

.contact-css-form-group label {
    font-weight: 500;
    color: #333;
    margin-bottom: 8px;
}

.contact-css-form-group input,
.contact-css-form-group select,
.contact-css-form-group textarea {
    padding: 12px 15px;
    border: 2px solid #f0f0f0;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-css-form-group input:focus,
.contact-css-form-group select:focus,
.contact-css-form-group textarea:focus {
    outline: none;
    border-color: #1f1d88;
    box-shadow: 0 0 0 3px rgba(31, 29, 136, 0.1);
}

.contact-css-form-submit {
    margin-top: 10px;
    text-align: center;
}

.contact-css-submit-button {
    background: #1f1d88;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: 100%;
    justify-content: center;
}

.contact-css-submit-button:hover {
    background: #151466;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.3);
}

.contact-css-form-note {
    margin-top: 15px;
    color: #666;
    font-size: 0.9rem;
    text-align: center;
}

.contact-css-info-container {
    flex: 1;
}

.contact-css-info-content h2 {
    color: #1f1d88;
    margin-bottom: 15px;
    font-size: 2rem;
}

.contact-css-info-content > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
    font-size: 1.1rem;
}

.contact-css-contact-methods {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.contact-css-contact-method {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: #f8f9ff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border-left: 4px solid #1f1d88;
}

.contact-css-contact-method:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-css-method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-css-method-info h4 {
    color: #1f1d88;
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-css-method-info p {
    color: #333;
    font-weight: 500;
    margin-bottom: 5px;
}

.contact-css-method-info span {
    color: #666;
    font-size: 0.9rem;
}

.contact-css-office-hours {
    background: white;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    border: 1px solid #f0f0f0;
}

.contact-css-office-hours h3 {
    color: #1f1d88;
    margin-bottom: 20px;
    text-align: center;
}

.contact-css-hours-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-css-hour-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.contact-css-hour-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.contact-css-hour-item span:first-child {
    font-weight: 500;
    color: #333;
}

.contact-css-hour-item span:last-child {
    color: #666;
}

.contact-css-response-time {
    margin-top: 30px;
}

.contact-css-response-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: linear-gradient(135deg, #1f1d88 0%, #3f4c6b 100%);
    color: white;
    padding: 25px;
    border-radius: 10px;
}

.contact-css-response-card i {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-css-response-info h4 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.contact-css-response-info p {
    opacity: 0.9;
    font-size: 0.9rem;
}

/* Offices Section */
.contact-css-offices-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-css-offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.contact-css-office-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.contact-css-office-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-css-office-header {
    background: linear-gradient(135deg, #1f1d88 0%, #3f4c6b 100%);
    color: white;
    padding: 30px;
    text-align: center;
    position: relative;
}

.contact-css-office-flag {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-css-office-header h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.contact-css-office-header p {
    opacity: 0.9;
}

.contact-css-office-info {
    padding: 30px;
}

.contact-css-office-detail {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.contact-css-office-detail:last-child {
    margin-bottom: 0;
}

.contact-css-office-detail i {
    color: #1f1d88;
    width: 20px;
    text-align: center;
}

.contact-css-office-detail span {
    color: #666;
}

.contact-css-office-cta {
    padding: 0 30px 30px;
    text-align: center;
}

.contact-css-map-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #1f1d88;
    color: white;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.contact-css-map-button:hover {
    background: #151466;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(31, 29, 136, 0.3);
}

/* Team Section */
.contact-css-team-section {
    padding: 80px 0;
    background: white;
}

.contact-css-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-css-team-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    text-align: center;
}

.contact-css-team-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.contact-css-team-image {
    height: 150px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 3rem;
}

.contact-css-team-info {
    padding: 30px 25px;
}

.contact-css-team-info h3 {
    color: #1f1d88;
    margin-bottom: 5px;
    font-size: 1.3rem;
}

.contact-css-team-role {
    color: #1f1d88;
    font-weight: 500;
    margin-bottom: 15px;
    font-size: 1rem;
}

.contact-css-team-bio {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
    font-size: 0.9rem;
}

.contact-css-team-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-css-team-detail {
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    color: #666;
    font-size: 0.9rem;
}

.contact-css-team-detail i {
    color: #1f1d88;
    width: 16px;
}

/* FAQ Section */
.contact-css-faq-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.contact-css-faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-css-faq-item {
    background: white;
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    overflow: hidden;
}

.contact-css-faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.contact-css-faq-question:hover {
    background: #f8f9ff;
}

.contact-css-faq-question h3 {
    font-size: 1.1rem;
    color: #1f1d88;
    margin: 0;
    font-weight: 500;
}

.contact-css-faq-toggle {
    font-size: 1.3rem;
    color: #1f1d88;
    transition: transform 0.3s ease;
}

.contact-css-faq-item.active .contact-css-faq-toggle {
    transform: rotate(45deg);
}

.contact-css-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.contact-css-faq-item.active .contact-css-faq-answer {
    max-height: 500px;
}

.contact-css-faq-answer p {
    padding: 0 25px 20px;
    color: #666;
    line-height: 1.6;
}

/* CTA Section */
.contact-css-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1f1d88 0%, #3f4c6b 100%);
    color: white;
    text-align: center;
}

.contact-css-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: white;
}

.contact-css-cta-content p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 2.5rem;
    opacity: 0.9;
}

.contact-css-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.contact-css-cta-section .contact-css-primary-button {
    background: white;
    color: #1f1d88;
    border-color: white;
}

.contact-css-cta-section .contact-css-primary-button:hover {
    background: transparent;
    color: white;
}

.contact-css-cta-section .contact-css-secondary-button {
    background: transparent;
    color: white;
    border-color: white;
}

.contact-css-cta-section .contact-css-secondary-button:hover {
    background: white;
    color: #1f1d88;
}

.contact-css-cta-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-css-cta-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.contact-css-cta-feature i {
    color: #a8c0ff;
}

/* Animations */
@keyframes contact-css-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes contact-css-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes contact-css-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes contact-css-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-css-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-css-hero-text {
        margin-bottom: 50px;
    }
    
    .contact-css-main-content {
        flex-direction: column;
    }
    
    .contact-css-form-row {
        flex-direction: column;
        gap: 20px;
    }
    
    .contact-css-offices-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-css-team-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .contact-css-section-header h2 {
        font-size: 2rem;
    }
    
    .contact-css-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .contact-css-hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-css-visual-element {
        width: 300px;
        height: 300px;
    }
    
    .contact-css-visual-card {
        padding: 20px;
    }
    
    .contact-css-card-1,
    .contact-css-card-2,
    .contact-css-card-3 {
        width: 150px;
    }
    
    .contact-css-form-container {
        padding: 30px 20px;
    }
    
    .contact-css-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-css-secondary-button {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .contact-css-cta-features {
        flex-direction: column;
        gap: 15px;
    }
    
    .contact-css-contact-method {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .contact-css-response-card {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
}

/* Privacy CSS - All classes prefixed with privacy-css */



.privacy-css-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
.privacy-css-section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    color: #1f1d88;
    margin-bottom: 2rem;
    text-align: left;
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 1rem;
}

/* Buttons */
.privacy-css-primary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #1f1d88;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
}

.privacy-css-primary-button:hover {
    background: transparent;
    color: #1f1d88;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

.privacy-css-secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    color: #1f1d88;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #1f1d88;
    margin-left: 15px;
}

.privacy-css-secondary-button:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(31, 29, 136, 0.2);
}

/* Hero Section */
.privacy-css-hero-section {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
}

.privacy-css-hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
}

.privacy-css-hero-text {
    flex: 1;
    max-width: 600px;
    animation: privacy-css-fadeInLeft 1s ease-out;
}

.privacy-css-hero-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    color: #1f1d88;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.privacy-css-hero-text p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.privacy-css-hero-features {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 2rem;
}

.privacy-css-feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.privacy-css-feature-item i {
    color: #1f1d88;
    font-size: 0.9rem;
}

.privacy-css-feature-item span {
    font-weight: 500;
    color: #333;
    font-size: 0.9rem;
}

.privacy-css-hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    animation: privacy-css-fadeInRight 1s ease-out;
}

.privacy-css-visual-element {
    position: relative;
    width: 350px;
    height: 350px;
}

.privacy-css-visual-card {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.privacy-css-visual-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.privacy-css-visual-card i {
    font-size: 2rem;
    color: #1f1d88;
    margin-bottom: 12px;
}

.privacy-css-visual-card h4 {
    color: #1f1d88;
    margin-bottom: 6px;
    font-size: 1.1rem;
}

.privacy-css-visual-card p {
    color: #666;
    font-size: 0.85rem;
}

.privacy-css-card-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 180px;
    animation: privacy-css-float 6s ease-in-out infinite;
}

.privacy-css-card-2 {
    bottom: 40px;
    left: 0;
    width: 160px;
    animation: privacy-css-float 7s ease-in-out infinite 1s;
}

.privacy-css-card-3 {
    bottom: 40px;
    right: 0;
    width: 160px;
    animation: privacy-css-float 8s ease-in-out infinite 0.5s;
}

.privacy-css-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.privacy-css-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
}

.privacy-css-circle-1 {
    width: 180px;
    height: 180px;
    top: -40px;
    right: 80px;
    animation: privacy-css-float 6s ease-in-out infinite;
}

.privacy-css-circle-2 {
    width: 130px;
    height: 130px;
    bottom: 30px;
    right: 250px;
    animation: privacy-css-float 8s ease-in-out infinite 1s;
}

.privacy-css-circle-3 {
    width: 90px;
    height: 90px;
    top: 120px;
    right: 450px;
    animation: privacy-css-float 7s ease-in-out infinite 0.5s;
}

/* Navigation Section */
.privacy-css-nav-section {
    background: white;
    padding: 40px 0;
    border-bottom: 1px solid #f0f0f0;
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

.privacy-css-nav-content h3 {
    color: #1f1d88;
    margin-bottom: 20px;
    text-align: center;
    font-size: 1.3rem;
}

.privacy-css-nav-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
}

.privacy-css-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9ff;
    color: #1f1d88;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #e0e7ff;
}

.privacy-css-nav-link:hover {
    background: #1f1d88;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(31, 29, 136, 0.2);
}

/* Content Section */
.privacy-css-content-section {
    padding: 60px 0;
    background: white;
}

.privacy-css-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.privacy-css-policy-section {
    margin-bottom: 60px;
}

.privacy-css-policy-content {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.privacy-css-policy-content p {
    margin-bottom: 1.5rem;
}

.privacy-css-policy-content ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.privacy-css-policy-content li {
    margin-bottom: 0.5rem;
}

.privacy-css-policy-content strong {
    color: #1f1d88;
}

/* Address Card */
.privacy-css-address-card {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #f8f9ff;
    padding: 20px;
    border-radius: 8px;
    margin: 1.5rem 0;
    border-left: 4px solid #1f1d88;
}

.privacy-css-address-card i {
    color: #1f1d88;
    font-size: 1.2rem;
    margin-top: 2px;
}

/* Important Note */
.privacy-css-important-note {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    background: #fff3cd;
    border: 1px solid #ffeaa7;
    border-radius: 8px;
    padding: 20px;
    margin: 1.5rem 0;
}

.privacy-css-note-icon {
    color: #856404;
    font-size: 1.3rem;
}

.privacy-css-note-content h4 {
    color: #856404;
    margin-bottom: 8px;
}

.privacy-css-note-content p {
    color: #856404;
    margin-bottom: 0;
}

/* Data Types Grid */
.privacy-css-data-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
    margin: 2rem 0;
}

.privacy-css-data-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.privacy-css-data-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privacy-css-data-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.privacy-css-data-card h4 {
    color: #1f1d88;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.privacy-css-data-card ul {
    padding-left: 1rem;
    margin-bottom: 0;
}

.privacy-css-data-card li {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    color: #666;
}

/* Usage Grid */
.privacy-css-usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.privacy-css-usage-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.privacy-css-usage-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
    margin-top: 5px;
}

.privacy-css-usage-text h4 {
    color: #1f1d88;
    margin-bottom: 8px;
    font-size: 1.1rem;
}

.privacy-css-usage-text p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Legal Basis */
.privacy-css-legal-basis {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 25px;
    margin: 2rem 0;
    border-left: 4px solid #1f1d88;
}

.privacy-css-legal-basis h4 {
    color: #1f1d88;
    margin-bottom: 15px;
}

/* Sharing Cards */
.privacy-css-sharing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.privacy-css-sharing-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.privacy-css-sharing-card h4 {
    color: #1f1d88;
    margin-bottom: 10px;
}

.privacy-css-sharing-card ul {
    margin-bottom: 0;
}

/* International Transfer */
.privacy-css-international-transfer {
    background: #e8f4f8;
    border-radius: 8px;
    padding: 25px;
    margin: 2rem 0;
    border-left: 4px solid #1f1d88;
}

/* Security Features */
.privacy-css-security-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin: 2rem 0;
}

.privacy-css-security-item {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #f0f0f0;
}

.privacy-css-security-item i {
    color: #1f1d88;
    width: 20px;
}

/* Rights Grid */
.privacy-css-rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.privacy-css-right-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.privacy-css-right-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.privacy-css-right-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    margin: 0 auto 15px;
}

.privacy-css-right-card h4 {
    color: #1f1d88;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

.privacy-css-right-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Rights Process */
.privacy-css-rights-process {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 25px;
    margin: 2rem 0;
}

/* Retention Table */
.privacy-css-retention-table {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    margin: 2rem 0;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.privacy-css-retention-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
}

.privacy-css-retention-row:last-child {
    border-bottom: none;
}

.privacy-css-retention-type {
    flex: 1;
    padding: 15px 20px;
    background: #f8f9ff;
    font-weight: 500;
    color: #1f1d88;
}

.privacy-css-retention-period {
    flex: 1;
    padding: 15px 20px;
    background: white;
    color: #666;
}

/* Cookie Types */
.privacy-css-cookie-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 2rem 0;
}

.privacy-css-cookie-card {
    background: white;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
}

.privacy-css-cookie-card h4 {
    color: #1f1d88;
    margin-bottom: 10px;
}

.privacy-css-cookie-card p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 0;
}

/* Contact Info */
.privacy-css-contact-info {
    margin: 2rem 0;
}

.privacy-css-contact-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #f8f9ff;
    padding: 25px;
    border-radius: 10px;
    border-left: 4px solid #1f1d88;
}

.privacy-css-contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #a8c0ff 0%, #3f4c6b 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.privacy-css-contact-details h4 {
    color: #1f1d88;
    margin-bottom: 5px;
}

.privacy-css-contact-details p {
    margin-bottom: 5px;
    color: #666;
}

.privacy-css-contact-details a {
    color: #1f1d88;
    text-decoration: none;
}

.privacy-css-contact-details a:hover {
    text-decoration: underline;
}

/* Complaint Info */
.privacy-css-complaint-info {
    background: #ffeaa7;
    border-radius: 8px;
    padding: 25px;
    margin: 2rem 0;
}

.privacy-css-complaint-info h4 {
    color: #856404;
    margin-bottom: 10px;
}

.privacy-css-complaint-info p {
    color: #856404;
    margin-bottom: 0;
}

/* Update History */
.privacy-css-update-history {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 25px;
    margin: 2rem 0;
}

.privacy-css-update-history h4 {
    color: #1f1d88;
    margin-bottom: 15px;
}

/* CTA Section */
.privacy-css-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1f1d88 0%, #3f4c6b 100%);
    color: white;
    text-align: center;
}

.privacy-css-cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: white;
}

.privacy-css-cta-content p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
}

.privacy-css-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.privacy-css-cta-section .privacy-css-primary-button {
    background: white;
    color: #1f1d88;
    border-color: white;
}

.privacy-css-cta-section .privacy-css-primary-button:hover {
    background: transparent;
    color: white;
}

.privacy-css-cta-section .privacy-css-secondary-button {
    background: transparent;
    color: white;
    border-color: white;
}

.privacy-css-cta-section .privacy-css-secondary-button:hover {
    background: white;
    color: #1f1d88;
}

/* Animations */
@keyframes privacy-css-fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes privacy-css-fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes privacy-css-float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

/* Responsive Styles */
@media (max-width: 992px) {
    .privacy-css-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-css-hero-text {
        margin-bottom: 50px;
    }
    
    .privacy-css-nav-links {
        flex-direction: column;
        align-items: center;
    }
    
    .privacy-css-nav-link {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .privacy-css-data-types,
    .privacy-css-usage-grid,
    .privacy-css-sharing-cards,
    .privacy-css-rights-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .privacy-css-section-header h2 {
        font-size: 1.8rem;
    }
    
    .privacy-css-hero-text h1 {
        font-size: 2.5rem;
    }
    
    .privacy-css-hero-features {
        flex-direction: column;
        align-items: center;
    }
    
    .privacy-css-visual-element {
        width: 280px;
        height: 280px;
    }
    
    .privacy-css-visual-card {
        padding: 15px;
    }
    
    .privacy-css-card-1,
    .privacy-css-card-2,
    .privacy-css-card-3 {
        width: 140px;
    }
    
    .privacy-css-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .privacy-css-secondary-button {
        margin-left: 0;
        margin-top: 10px;
    }
    
    .privacy-css-contact-card {
        flex-direction: column;
        text-align: center;
    }
    
    .privacy-css-retention-row {
        flex-direction: column;
    }
    
    .privacy-css-retention-type {
        border-bottom: 1px solid #f0f0f0;
    }
}

/* Scroll-to-top button style */
#scrollTopBtn {
  display: none; /* Hidden by default */
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 99;
  font-size: 18px;
  border: none;
  outline: none;
  background-color: #007bff;
  color: white;
  cursor: pointer;
  padding: 12px 15px;
  border-radius: 50%;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

#scrollTopBtn:hover {
  background-color: #0056b3;
  transform: translateY(-3px);
}

/* Optional: smooth scroll behavior */
html {
  scroll-behavior: smooth;
}
.abebooks-css-hero-image .abebooks-css-image-placeholder {
    height: auto;
    background: none;
}
.abebooks-css-hero-image img {
    max-width: 580px;
    width: 100%;
}
.abebooks-css-tab-visual img {
    max-width: 435px;
    width: 100%;
}

/*submenu css*/
@media (max-width: 768px) {
ul.nav-links {
    display: block;
    position: absolute;
    background: rgb(33 37 41 / 99%);
    width: 100%;
    text-align: center;
    top: 109px; /* fixed position below navbar */
    left: 0;
    z-index: 9999;
    height: calc(100% - 109px);
    transform: translateY(-200%);
    transition: transform 0.3s ease-out;
}

ul.nav-links li {
    margin: 0;
    color: #fff;
    padding: 20px 10px;
}

ul.nav-links li:not(:last-child) {
    border-bottom: 1px solid #333333;
}

/* When show class is added */
.nav-links.show {
    transform: none;
}
.nav-buttons.show {
    position: absolute;
    left: 0px;
    right: 0px;
    bottom: 25px;
    z-index: 999999;
    width: calc(100% - 50px);
    display: flex;
    justify-content: space-between;
    margin: auto;
}
}
/*submenu css*/

@media (max-width: 768px) {
nav.navbar:has(.nav-links.show) .hamburger span:first-child,
nav.navbar:has(.nav-links.active) .hamburger span:first-child {
    transform: rotate(45deg);
    top: 5px;
}
nav.navbar:has(.nav-links.show) .hamburger span:last-child,
nav.navbar:has(.nav-links.active) .hamburger span:last-child {
    transform: rotate(-45deg);
    bottom: 4px;
}
nav.navbar:has(.nav-links.show) .hamburger span,
nav.navbar:has(.nav-links.active) .hamburger span {
    position: relative;
}
nav.navbar:has(.nav-links.show) .hamburger span:nth-child(2),
nav.navbar:has(.nav-links.active) .hamburger span:nth-child(2) {
    display: none;
}
.nav-links.active {
    transform: none;
}
.nav-buttons.active {
    position: absolute;
    left: 0px;
    right: 0px;
    top: calc(100vh - 80px);
    z-index: 999999;
    width: calc(100% - 50px);
    display: flex;
    justify-content: space-between;
    margin: auto;
}
ul.nav-links{
    height: calc(100vh - 109px);
}
.nav-buttons.show {
    top: calc(100vh - 80px);
}
}

.auth-section {
  background: linear-gradient(135deg, #f6f8ff, #eef1ff);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 150px 20px;
}

.auth-container {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  overflow: hidden;
  max-width: 900px;
  width: 100%;
}

.auth-left, .auth-right {
  flex: 1;
  padding: 60px 50px;
  min-width: 300px;
}

.auth-left {
  background: #f5f8ff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.auth-left h2 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 15px;
  color: #222;
}

.auth-left p {
  color: #555;
  font-size: 1rem;
  line-height: 1.6;
}

.auth-right h3 {
  font-size: 1.6rem;
  font-weight: 600;
  color: #222;
  margin-bottom: 25px;
}

.auth-form-group {
  margin-bottom: 20px;
}

.auth-form-group label {
  display: block;
  margin-bottom: 8px;
  color: #333;
  font-weight: 500;
}

.auth-form-group input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 0.95rem;
  transition: border-color 0.3s;
}

.auth-form-group input:focus {
  border-color: #0066ff;
  outline: none;
}

.auth-submit-btn {
  width: 100%;
  background: #0066ff;
  color: #fff;
  padding: 12px;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s;
}

.auth-submit-btn:hover {
  background: #004fd1;
}

.auth-extra-text {
  margin-top: 20px;
  text-align: center;
  font-size: 0.9rem;
}

.auth-extra-text a {
  color: #0066ff;
  text-decoration: none;
  font-weight: 500;
}

.auth-extra-text a:hover {
  text-decoration: underline;
}

/* Mobile-friendly */
@media (max-width: 768px) {
  .auth-container {
    flex-direction: column;
  }

  .auth-left, .auth-right {
    padding: 40px 30px;
  }

  .auth-left {
    text-align: center;
  }
}
