.about-hero {
            position: relative;
            height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
            overflow: hidden;
        }

        .about-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('image/hero.jpg') center/cover;
            opacity: 0.2;
            z-index: 0;
        }

        .about-hero-content {
            position: relative;
            z-index: 1;
            text-align: center;
            color: #fff;
            padding: 2rem;
        }

        .about-hero h1 {
            font-family: 'Cinzel', serif;
            font-size: 4rem;
            font-weight: 600;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 3px;
        }

        .about-hero p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            font-weight: 300;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Story Section */
        .story-section {
            padding: 6rem 5%;
            background: #fff;
        }

        .story-container-single {
            max-width: 900px;
            margin: 0 auto;
        }

        .story-content {
            text-align: center;
        }

        .story-content h2 {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .story-content h3 {
            font-family: 'Kaushan Script', cursive;
            font-size: 2rem;
            color: #c9a961;
            margin-bottom: 2rem;
        }

        .story-content p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #555;
            margin-bottom: 1.5rem;
            text-align: left;
        }

        /* Values Section */
        .values-section {
            padding: 6rem 5%;
            background: linear-gradient(135deg, #f8f8f8 0%, #e8e8e8 100%);
        }

        .values-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .section-title {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            text-align: center;
            color: #1a1a1a;
            margin-bottom: 1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        .section-subtitle {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            text-align: center;
            color: #666;
            margin-bottom: 4rem;
        }

        /* Values Slider Styles */
        .values-slider-wrapper {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 0 auto 3rem;
        }

        .values-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .values-slide {
            min-width: 100%;
            padding: 0 1rem;
        }

        .value-card {
            background: #fff;
            padding: 3rem;
            border-radius: 10px;
            text-align: center;
            box-shadow: 0 5px 20px rgba(0,0,0,0.1);
            min-height: 250px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .value-card h3 {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            color: #1a1a1a;
            margin-bottom: 1.5rem;
        }

        .value-card p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.2rem;
            line-height: 1.8;
            color: #666;
        }

        /* Values Navigation */
        .values-navigation {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-top: 2rem;
        }

        .values-nav-btn {
            background: #1a1a1a;
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .values-nav-btn:hover {
            background: #333;
            transform: scale(1.1);
        }

        .values-dots {
            display: flex;
            gap: 0.8rem;
        }

        .values-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #d3d3d3;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #999;
        }

        .values-dot.active {
            background: #1a1a1a;
            transform: scale(1.3);
            border: 1px solid #1a1a1a;
        }

        /* Team Section */
        .team-section {
            padding: 6rem 5%;
            background: #1a1a1a;
            color: #fff;
        }

        .team-container {
            max-width: 1200px;
            margin: 0 auto;
        }

        .team-header-styled {
            text-align: center;
            margin-bottom: 1rem;
        }

        .team-label {
            font-family: 'Cinzel', serif;
            font-size: 0.9rem;
            letter-spacing: 4px;
            color: #c9a961;
            margin-bottom: 1rem;
            font-weight: 400;
        }

        .team-title-styled {
            font-family: 'Cinzel', serif;
            font-size: 4rem;
            color: #c9a961;
            letter-spacing: 8px;
            font-weight: 600;
            margin-bottom: 1.5rem;
        }

        .team-divider {
            width: 100px;
            height: 2px;
            background: #c9a961;
            margin: 0 auto 2rem;
        }

        .team-section .section-subtitle {
            color: #c9a961;
        }

        /* Team Slider Styles */
        .team-slider-wrapper {
            position: relative;
            overflow: hidden;
            max-width: 800px;
            margin: 3rem auto 3rem;
        }

        .team-slider {
            display: flex;
            transition: transform 0.5s ease-in-out;
        }

        .team-slide {
            min-width: 100%;
            padding: 0 2rem;
        }

        .team-member {
            text-align: center;
        }

        .team-photo {
            width: 300px;
            height: 300px;
            margin: 0 auto 1.5rem;
            border-radius: 50%;
            overflow: hidden;
            border: 5px solid #c9a961;
            box-shadow: 0 10px 30px rgba(0,0,0,0.3);
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            object-position: center 40%;
        }

        .team-name {
            font-family: 'Cinzel', serif;
            font-size: 1.8rem;
            margin-bottom: 0.5rem;
            color: #fff;
        }

        .team-role {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.3rem;
            color: #c9a961;
            margin-bottom: 1rem;
        }

        .team-bio {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.1rem;
            line-height: 1.6;
            color: #ccc;
            max-width: 600px;
            margin: 0 auto;
        }

        /* Team Navigation */
        .team-navigation {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 2rem;
            margin-top: 3rem;
        }

        .team-nav-btn {
            background: #c9a961;
            color: #1a1a1a;
            border: none;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            font-size: 1.5rem;
            cursor: pointer;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: bold;
        }

        .team-nav-btn:hover {
            background: #fff;
            transform: scale(1.1);
        }

        .team-dots {
            display: flex;
            gap: 0.8rem;
        }

        .team-dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: #555;
            cursor: pointer;
            transition: all 0.3s ease;
            border: 1px solid #777;
        }

        .team-dot.active {
            background: #c9a961;
            transform: scale(1.3);
            border: 1px solid #c9a961;
        }

        /* CTA Section */
        .cta-section {
            padding: 6rem 5%;
            background: #ffffff;
            text-align: center;
            color: #1a1a1a;
        }

        .cta-section h2 {
            font-family: 'Cinzel', serif;
            font-size: 3rem;
            margin-bottom: 1rem;
            text-transform: uppercase;
            color: #1a1a1a;
        }

        .cta-section p {
            font-family: 'Cormorant Garamond', serif;
            font-size: 1.5rem;
            margin-bottom: 2rem;
            color: #333;
        }

        .cta-button {
            display: inline-block;
            padding: 1.2rem 3rem;
            background: #1a1a1a;
            color: #fff;
            font-family: 'Cinzel', serif;
            font-size: 1.1rem;
            text-decoration: none;
            text-transform: uppercase;
            letter-spacing: 2px;
            border-radius: 5px;
            transition: all 0.3s ease;
        }

        .cta-button:hover {
            background: #333;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(0,0,0,0.2);
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .about-hero h1 {
                font-size: 2.5rem;
            }

            .about-hero p {
                font-size: 1.2rem;
            }

            .story-content h2 {
                font-size: 2rem;
            }

            .story-content h3 {
                font-size: 1.5rem;
            }

            .story-content p {
                font-size: 1rem;
            }

            .values-slider-wrapper {
                max-width: 100%;
            }

            .value-card {
                padding: 2rem;
                min-height: 200px;
            }

            .value-card h3 {
                font-size: 1.4rem;
            }

            .value-card p {
                font-size: 1rem;
            }

            .values-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .team-grid {
                grid-template-columns: 1fr;
            }

            .team-title-styled {
                font-size: 2.5rem;
                letter-spacing: 4px;
            }

            .team-label {
                font-size: 0.8rem;
                letter-spacing: 3px;
            }

            .team-slider-wrapper {
                max-width: 100%;
            }

            .team-slide {
                padding: 0 1rem;
            }

            .team-photo {
                width: 250px;
                height: 250px;
            }

            .team-name {
                font-size: 1.5rem;
            }

            .team-role {
                font-size: 1.1rem;
            }

            .team-bio {
                font-size: 1rem;
            }

            .team-nav-btn {
                width: 40px;
                height: 40px;
                font-size: 1.2rem;
            }

            .cta-section h2 {
                font-size: 2rem;
            }
        }

        /* Hamburger Menu Styles */
        .hamburger-menu {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 10px;
            z-index: 1001;
            position: relative;
        }

        .hamburger-icon {
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .hamburger-icon .dot {
            width: 8px;
            height: 8px;
            background-color: #fff;
            border-radius: 50%;
            transition: all 0.3s ease;
        }

        .close-icon {
            display: none;
            font-size: 2.5rem;
            color: #fff;
            font-weight: 300;
            line-height: 1;
        }

        .hamburger-menu.active .hamburger-icon {
            display: none;
        }

        .hamburger-menu.active .close-icon {
            display: block;
        }

        /* Mobile Navigation Styles */
        @media (max-width: 768px) {
            .hamburger-menu {
                display: block;
            }

            .nav-links {
                position: fixed;
                top: 0;
                right: -100%;
                width: 70%;
                height: 100vh;
                background: rgba(0, 0, 0, 0.98);
                flex-direction: column;
                justify-content: center;
                align-items: center;
                gap: 2rem;
                transition: right 0.4s ease;
                z-index: 1000;
                padding: 2rem;
            }

            .nav-links.active {
                right: 0;
            }

            .nav-links li {
                margin: 0;
                width: 100%;
                text-align: center;
            }

            .nav-links li a {
                font-size: 1.2rem;
                padding: 1rem;
                display: block;
                width: 100%;
                border-bottom: 1px solid rgba(255, 255, 255, 0.1);
            }

            .nav-links li a:hover {
                background: rgba(255, 255, 255, 0.1);
            }
        }