
        /* Specific Styles for About Page */
        .about-hero {
            height: 60vh;
            background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)), 
                        url('https://images.unsplash.com/photo-1497366216548-37526070297c?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
            padding: 100px 10%;
            background: #fff;
            color: #1d2d4d;
        }

        .story-image {
            position: relative;
        }

        .story-image img {
            width: 100%;
            display: block;
            box-shadow: 20px 20px 0px var(--gold);
        }

        .story-content h2 {
            font-size: 3rem;
            margin-bottom: 20px;
            line-height: 1.1;
        }

        .story-content p {
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: #555;
            font-weight: 300;
        }

        .expertise-section {
            background: #f8f9fa;
            padding: 100px 10%;
            color: #1d2d4d;
        }

        .expertise-card {
            background: white;
            padding: 40px;
            border-left: 5px solid var(--gold);
            transition: 0.3s;
        }

        .expertise-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        .quote-block {
            padding: 80px 10%;
            text-align: center;
            background: var(--primary-blue);
            color: var(--white);
        }

        .quote-block blockquote {
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-style: italic;
            max-width: 900px;
            margin: 0 auto;
        }
