/* Add your custom styles below */

/* Global Styles */
:root {
    --primary-color: #4a6cf7;
    --secondary-color: #6a7c92;
    --accent-color: #ff6b6b;
    --background-color: #ffffff;
    --text-color: #333333;
    --light-gray: #f5f5f5;
    --medium-gray: #e0e0e0;
    --dark-gray: #888888;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--background-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: var(--transition);
}

a:hover {
    color: var(--accent-color);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--secondary-color);
    max-width: 700px;
    margin: 0 auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 24px;
    background-color: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn:hover {
    background-color: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: var(--box-shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: white;
}

/* Header & Navigation */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 15px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
}

.logo-text {
    color: var(--primary-color);
}

.main-nav {
    display: flex;
}

.nav-list {
    display: flex;
    gap: 30px;
}

.nav-list a {
    color: var(--text-color);
    font-weight: 500;
    position: relative;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--primary-color);
}

.nav-list a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.nav-cta {
    margin-left: 30px;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--text-color);
    margin: 5px 0;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e0e6ff 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
}

.hero-text p {
    font-size: 1.2rem;
    color: var(--secondary-color);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 15px;
}

.hero-image {
    flex: 1;
    text-align: right;
}

.hero-image img {
    max-width: 100%;
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* Product Page Styles */
.product-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e0e6ff 100%);
    text-align: center;
}

/* Features Page Styles */
.features-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #f5f7ff 0%, #e0e6ff 100%);
    text-align: center;
}

.features-hero-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.features-hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #6a7c92;
}

.core-features {
    padding: 80px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(74, 108, 247, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.feature-icon i {
    font-size: 24px;
    color: var(--primary-color);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.feature-card p {
    font-size: 1rem;
    color: #6a7c92;
    margin-bottom: 20px;
}

.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #6a7c92;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 10px;
}

.advanced-features {
    padding: 80px 0;
    background-color: #f5f7ff;
}

.features-tabs {
    margin-top: 50px;
}

.tabs-navigation {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.tab-button {
    padding: 12px 24px;
    background-color: transparent;
    border: none;
    border-bottom: 2px solid #e0e6ff;
    color: #6a7c92;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 10px 10px;
}

.tab-button.active {
    color: var(--primary-color);
    border-bottom: 2px solid var(--primary-color);
}

.tabs-content {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.tab-pane {
    display: none;
    padding: 40px;
}

.tab-pane.active {
    display: block;
}

.tab-content-inner {
    display: flex;
    align-items: center;
    gap: 40px;
}

.tab-text {
    flex: 1;
}

.tab-text h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.tab-text p {
    font-size: 1.1rem;
    color: #6a7c92;
    margin-bottom: 20px;
}

.tab-image {
    flex: 1;
    text-align: center;
}

.tab-image img {
    max-width: 100%;
    height: auto;
}

.integrations {
    padding: 80px 0;
}

.integration-content {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-top: 50px;
}

.integration-image {
    flex: 1;
    text-align: center;
}

.integration-list {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.integration-category {
    flex: 0 0 calc(50% - 15px);
}

.integration-category h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #2d3748;
}

.integration-category ul {
    list-style: none;
    padding: 0;
}

.integration-category ul li {
    margin-bottom: 10px;
    color: #6a7c92;
    position: relative;
    padding-left: 20px;
}

.integration-category ul li:before {
    content: '•';
    color: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

.product-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.product-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
    color: #6a7c92;
}

.product-overview {
    padding: 80px 0;
}

.product-overview h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2d3748;
}

.product-overview p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #6a7c92;
}

.product-stats {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-top: 40px;
}

.stat-item {
    flex: 0 0 30%;
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #4a6cf7;
    margin-bottom: 10px;
}

.stat-item p {
    font-size: 1rem;
    color: #6a7c92;
    margin: 0;
}

.product-process {
    padding: 80px 0;
    background-color: #f5f7ff;
}

.product-process h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2d3748;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.process-step {
    flex: 0 0 48%;
    margin-bottom: 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.process-step h3 {
    font-size: 1.5rem;
    color: #4a6cf7;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.process-step h3 i {
    margin-right: 10px;
    font-size: 1.8rem;
}

.process-step p {
    font-size: 1rem;
    color: #6a7c92;
    margin-bottom: 20px;
}

.process-features {
    display: flex;
    flex-wrap: wrap;
}

.process-feature {
    flex: 0 0 50%;
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.process-feature i {
    color: #4a6cf7;
    margin-right: 10px;
    margin-top: 5px;
}

.product-advantages {
    padding: 80px 0;
}

.product-advantages h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2d3748;
}

.advantages-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.advantage-card {
    flex: 0 0 30%;
    margin-bottom: 30px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
}

.advantage-card i {
    font-size: 2.5rem;
    color: #4a6cf7;
    margin-bottom: 20px;
}

.advantage-card h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.advantage-card p {
    font-size: 1rem;
    color: #6a7c92;
}

.product-tech {
    padding: 80px 0;
    background-color: #f5f7ff;
}

.product-tech h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #2d3748;
}

.product-tech p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: #6a7c92;
}

.tech-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.tech-text {
    flex: 0 0 48%;
}

.tech-image {
    flex: 0 0 48%;
    text-align: center;
}

.tech-image img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.tech-features {
    margin-bottom: 30px;
}

.tech-features h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 20px;
}

.tech-feature {
    margin-bottom: 15px;
    display: flex;
    align-items: flex-start;
}

.tech-feature i {
    color: #4a6cf7;
    margin-right: 10px;
    margin-top: 5px;
}

.product-demo {
    padding: 80px 0;
}

.product-demo h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    text-align: center;
    color: #2d3748;
}

.product-demo p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
    color: #6a7c92;
}

.demo-video {
    text-align: center;
    margin-bottom: 50px;
}

.demo-video-placeholder {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.demo-video-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

.demo-video-placeholder .play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background-color: rgba(74, 108, 247, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.demo-video-placeholder .play-button i {
    color: #ffffff;
    font-size: 2rem;
}

.demo-highlights {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.demo-highlight {
    flex: 0 0 30%;
    margin-bottom: 30px;
    text-align: center;
}

.demo-highlight i {
    font-size: 2.5rem;
    color: #4a6cf7;
    margin-bottom: 20px;
}

.demo-highlight h3 {
    font-size: 1.5rem;
    color: #2d3748;
    margin-bottom: 15px;
}

.demo-highlight p {
    font-size: 1rem;
    color: #6a7c92;
    margin: 0;
    text-align: center;
}

.product-testimonials {
    padding: 80px 0;
    background-color: #f5f7ff;
}

.product-testimonials h2 {
    font-size: 2.5rem;
    margin-bottom: 50px;
    text-align: center;
    color: #2d3748;
}

.testimonial-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.testimonial-card {
    flex: 0 0 30%;
    margin-bottom: 30px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.testimonial-content {
    font-size: 1rem;
    color: #6a7c92;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    margin-right: 15px;
}

.testimonial-author-info h4 {
    font-size: 1.1rem;
    color: #2d3748;
    margin: 0 0 5px;
}

.testimonial-author-info p {
    font-size: 0.9rem;
    color: #6a7c92;
    margin: 0;
}

.product-cta {
    padding: 80px 0;
    text-align: center;
    background: linear-gradient(135deg, #4a6cf7 0%, #2d3748 100%);
    color: #ffffff;
}

.product-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.product-cta p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .header-content {
        position: relative;
    }
    
    .main-nav {
        display: none;
    }
    
    .main-nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        padding: 20px;
        z-index: 1000;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Product Page Responsive */
    .stat-item {
        flex: 0 0 48%;
    }
    
    .process-step {
        flex: 0 0 100%;
    }
    
    .advantage-card {
        flex: 0 0 48%;
    }
    
    .tech-text, .tech-image {
        flex: 0 0 100%;
    }
    
    .tech-image {
        margin-top: 30px;
    }
    
    .demo-highlight {
        flex: 0 0 48%;
    }
    
    .testimonial-card {
        flex: 0 0 48%;
    }
}

@media (max-width: 768px) {
    /* Global Responsive */
    .section-header h2 {
        font-size: 2rem;
    }
    
    .hero-text h1,
    .product-hero h1,
    .pricing-hero h1,
    .contact-hero h1,
    .legal-hero h1,
    .features-hero-content h1 {
        font-size: 2.2rem;
    }
    
    .hero-content,
    .tab-content-inner,
    .integration-content {
        flex-direction: column;
    }
    
    .hero-text,
    .hero-image,
    .tab-text,
    .tab-image,
    .integration-image,
    .integration-list {
        flex: 0 0 100%;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-image {
        margin-top: 30px;
    }
    
    /* Features Page Responsive */
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .integration-category {
        flex: 0 0 100%;
    }
    
    /* Product Page Responsive */
    .product-overview h2, .product-process h2, .product-advantages h2, 
    .product-tech h2, .product-demo h2, .product-testimonials h2, .product-cta h2 {
        font-size: 2rem;
    }
    
    .stat-item,
    .process-feature,
    .advantage-card,
    .demo-highlight,
    .testimonial-card {
        flex: 0 0 100%;
    }
    
    /* Pricing Page Responsive */
    .pricing-card {
        flex: 0 0 100%;
        margin-bottom: 30px;
    }
    
    /* Contact Page Responsive */
    .form-row {
        flex-direction: column;
    }
    
    .form-group.half {
        width: 100%;
        padding: 0;
    }
    
    /* Footer Responsive */
    .footer-content {
        flex-direction: column;
    }
    
    .footer-column {
        width: 100%;
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    /* Extra Small Devices */
    .container {
        padding: 0 15px;
    }
    
    .hero-text h1,
    .product-hero h1,
    .pricing-hero h1,
    .contact-hero h1,
    .legal-hero h1,
    .features-hero-content h1 {
        font-size: 1.8rem;
    }
    
    .section-header h2,
    .product-overview h2, .product-process h2, .product-advantages h2, 
    .product-tech h2, .product-demo h2, .product-testimonials h2, .product-cta h2 {
        font-size: 1.6rem;
    }
    
    .hero {
        padding: 120px 0 60px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
    
    .tabs-navigation {
        flex-direction: column;
    }
    
    .tab-button {
        width: 100%;
        margin: 5px 0;
    }
    
    .tab-pane {
        padding: 20px;
    }
    
    .legal-document {
        padding: 30px 20px;
    }
}

/* Pricing Page Styles */
.pricing-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
}

.pricing-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.pricing-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

.pricing-plans {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 50px;
}

.pricing-toggle span {
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0 15px;
}

.toggle-switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 30px;
    background-color: var(--primary-color);
    border-radius: 30px;
    cursor: pointer;
}

.toggle-switch::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: white;
    top: 3px;
    left: 3px;
    transition: all 0.3s;
}

.pricing-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    padding: 40px 30px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card.featured {
    border: 2px solid var(--primary-color);
}

.pricing-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--primary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.pricing-card .price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.pricing-card .price span {
    font-size: 1rem;
    font-weight: 400;
    color: #777;
}

.pricing-card .description {
    font-size: 1rem;
    color: #666;
    margin-bottom: 25px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
    flex-grow: 1;
}

.pricing-features li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    color: #555;
    display: flex;
    align-items: center;
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features i {
    color: var(--primary-color);
    margin-right: 10px;
}

.pricing-features i.fa-times {
    color: #ddd;
}

.pricing-card .btn {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
}

.volume-discount {
    padding: 60px 0;
    background-color: #fff;
}

.volume-discount h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.discount-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.discount-table th,
.discount-table td {
    padding: 15px 20px;
    text-align: left;
    border-bottom: 1px solid #eee;
}

.discount-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #333;
}

.discount-table tr:last-child td {
    border-bottom: none;
}

.discount-table .discount-rate {
    color: var(--primary-color);
    font-weight: 600;
}

.pricing-faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.pricing-faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}

.faq-item {
    margin-bottom: 30px;
    background-color: #fff;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    position: relative;
    padding-left: 30px;
}

.faq-item h4::before {
    content: 'Q:';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
    position: relative;
    padding-left: 30px;
}

.faq-item p::before {
    content: 'A:';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--secondary-color);
    font-weight: 700;
}

.pricing-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
}

.pricing-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.pricing-cta p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Contact Page Styles */
.contact-hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
}

.contact-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Legal Pages Styles (Terms & Privacy) */
.legal-hero {
    padding: 100px 0 60px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff;
    text-align: center;
}

.legal-hero h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-hero p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.legal-content {
    padding: 80px 0;
    background-color: #fff;
}

.legal-document {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.05);
    padding: 50px;
    margin-bottom: 30px;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section:last-child {
    margin-bottom: 0;
}

.legal-section h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.legal-section h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #444;
    font-weight: 600;
}

.legal-section p {
    margin-bottom: 15px;
    color: #666;
    line-height: 1.7;
}

.legal-section ul, .legal-section ol {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-section li {
    margin-bottom: 10px;
    color: #666;
    line-height: 1.7;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #fff;
}

.contact-info {
    background-color: var(--primary-color);
    color: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    height: 100%;
}

.contact-info h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-info p {
    margin-bottom: 30px;
    opacity: 0.9;
}

.contact-details {
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    margin-bottom: 25px;
}

.contact-item i {
    font-size: 1.5rem;
    margin-right: 20px;
    margin-top: 5px;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.contact-item p {
    margin-bottom: 0;
    opacity: 0.9;
}

.contact-social h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.social-icons a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    margin-right: 10px;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background-color: #fff;
    color: var(--primary-color);
}

.contact-form {
    background-color: #fff;
    padding: 50px 40px;
    border-radius: 10px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.1);
    height: 100%;
}

.contact-form h2 {
    font-size: 2rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.contact-form p {
    color: #666;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #555;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb), 0.1);
    outline: none;
}

.form-row {
    display: flex;
    margin-left: -10px;
    margin-right: -10px;
}

.form-group.half {
    width: 50%;
    padding: 0 10px;
}

.form-group.checkbox {
    display: flex;
    align-items: flex-start;
}

.form-group.checkbox input {
    width: auto;
    margin-right: 10px;
    margin-top: 5px;
}

.form-group.checkbox label {
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.5;
}

.form-submit {
    margin-top: 30px;
}

.form-submit .btn {
    padding: 12px 30px;
    font-size: 1rem;
}

.form-success {
    text-align: center;
    padding: 40px 0;
}

.form-success i {
    font-size: 4rem;
    color: #28a745;
    margin-bottom: 20px;
}

.form-success h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
}

.form-success p {
    font-size: 1.1rem;
    color: #666;
}

.contact-faq {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-faq h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: #333;
}