    /* About Page Styles */
    :root {
        --primary-color: #2c3e50;
        --secondary-color: #3498db;
        --accent-color: #e74c3c;
        --text-color: #333;
        --light-bg: #f8f9fa;
    }

    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }

    body {
        font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        line-height: 1.6;
        color: var(--text-color);
        background-color: var(--light-bg);
    }

    .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 20px;
    }

    /* Hero Section */
    .hero-section {
        background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
        color: white;
        padding: 100px 0;
        text-align: center;
    }

    .hero-section h1 {
        font-size: 3.5rem;
        font-weight: 700;
        margin-bottom: 1rem;
    }

    .hero-section p {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    /* Pricing Section (reused for about content) */
    .pricing-section {
        padding: 80px 0;
        background: var(--light-bg);
    }

    .pricing-card {
        background: white;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        padding: 40px 30px;
        margin-bottom: 30px;
        transition: transform 0.3s ease, box-shadow 0.3s ease;
        position: relative;
        overflow: hidden;
        text-align: center;
    }

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    }

    .price-header {
        text-align: center;
        margin-bottom: 30px;
    }

    .price-header h3 {
        color: var(--primary-color);
        font-size: 1.8rem;
        font-weight: 600;
        margin-bottom: 10px;
    }

    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }

    .section-title h2 {
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--primary-color);
        margin-bottom: 15px;
    }

    .section-title p {
        font-size: 1.1rem;
        color: #666;
        max-width: 600px;
        margin: 0 auto;
    }

    .highlight-box {
        background: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
        color: white;
        padding: 2rem;
        border-radius: 15px;
        margin: 2rem 0 4rem 0;
        text-align: center;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    .highlight-box h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    /* Custom Quote Section (CTA) */
    .custom-quote-section {
        padding: 80px 0;
        background: var(--primary-color);
        color: white;
        text-align: center;
    }

    .custom-quote-section h2 {
        font-size: 2.5rem;
        margin-bottom: 1rem;
    }

    .custom-quote-section .lead {
        font-size: 1.2rem;
        opacity: 0.9;
    }

    .btn-light {
        background: white;
        color: var(--primary-color);
        border: none;
        padding: 15px 30px;
        border-radius: 50px;
        font-weight: 600;
        transition: all 0.3s ease;
    }

    .btn-light:hover {
        background: var(--light-bg);
        transform: translateY(-2px);
    }

    .icon {
        font-size: 2.5rem;
        margin-bottom: 1rem;
        display: block;
    }

    @media (max-width: 768px) {
        .hero-section h1 {
            font-size: 2.5rem;
        }
        
        .hero-section {
            padding: 60px 0;
        }
        
        .pricing-section {
            padding: 60px 0;
        }

        .pricing-card {
            padding: 30px 20px;
        }
        
        .custom-quote-section {
            padding: 60px 0;
        }
    }