 .about-hero {
            background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            padding: 120px 0 80px;
            color: white;
            text-align: center;
        }
        
        .about-hero h1 {
            font-family: 'Lobster Two', cursive;
            font-size: 4rem;
            margin-bottom: 20px;
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        }
        
        .about-hero p {
            font-size: 1.5rem;
            max-width: 800px;
            margin: 0 auto;
            font-weight: 300;
        }
        
        .about-section {
            padding: 80px 0;
        }
        
        .about-content {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        .about-mission {
            background-color: #fff8f0;
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            font-family: 'Lobster Two', cursive;
            font-size: 2.5rem;
            color: #eb0029;
            margin-bottom: 40px;
            position: relative;
        }
        
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #ff9d2d;
            margin: 10px auto 0;
        }
        
        .mission-content {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            margin-bottom: 50px;
        }
        
        .mission-text {
            flex: 1;
            min-width: 300px;
        }
        
        .mission-text h3 {
            font-size: 1.8rem;
            color: #333;
            margin-bottom: 20px;
        }
        
        .mission-text p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
        }
        
        .mission-image {
            flex: 1;
            min-width: 300px;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        }
        
        .mission-image img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .team-section {
            background-color: #f7f7f7;
            padding: 80px 0;
        }
        
        .team-members {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 40px;
        }
        
        .team-member {
            background: white;
            border-radius: 12px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
            max-width: 350px;
            text-align: center;
            transition: transform 0.3s ease;
        }
        
        .team-member:hover {
            transform: translateY(-10px);
        }
        
        .member-image {
            height: 300px;
            overflow: hidden;
        }
        
        .member-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        
        .team-member:hover .member-image img {
            transform: scale(1.05);
        }
        
        .member-info {
            padding: 25px;
        }
        
        .member-info h3 {
            font-size: 1.5rem;
            color: #333;
            margin-bottom: 10px;
        }
        
        .member-info p {
            color: #eb0029;
            font-weight: 600;
            margin-bottom: 15px;
        }
        
        .story-section {
            padding: 80px 0;
        }
        
        .story-content {
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
        }
        
        .story-content p {
            font-size: 1.1rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 30px;
        }
        
        .about-cta {
            background: linear-gradient(to right, #eb0029, #ff9d2d);
            padding: 80px 0;
            text-align: center;
            color: white;
        }
        
        .about-cta h2 {
            font-size: 2.5rem;
            margin-bottom: 30px;
            font-family: 'Lobster Two', cursive;
        }
        
        .cta-buttons {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        
        .cta-button {
            background: white;
            color: #eb0029;
            border: none;
            padding: 15px 35px;
            font-size: 1.1rem;
            font-weight: 600;
            border-radius: 50px;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-block;
        }
        
        .cta-button:hover {
            background: #f7f7f7;
            transform: translateY(-3px);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
        }
        
        .cta-button.secondary {
            background: transparent;
            border: 2px solid white;
            color: white;
        }
        
        .cta-button.secondary:hover {
            background: rgba(255, 255, 255, 0.1);
        }
        
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.5rem;
            }
            
            .about-hero p {
                font-size: 1.2rem;
            }
            
            .mission-content {
                flex-direction: column;
            }
            
            .section-title {
                font-size: 2rem;
            }
            
            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }
        }
