        /* Page Banner */
        .page-banner {
            height: 50vh;
            background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1596178060810-72f53ce9a65c?ixlib=rb-1.2.1&auto=format&fit=crop&w=1350&q=80');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--pure-white);
            text-align: center;
            padding-top: 80px;
            margin-top: 80px;
        }

        .page-banner-content {
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
            animation: fadeInUp 1s forwards 0.5s;
        }

        .page-banner h1 {
            font-size: 3.5rem;
            margin-bottom: 20px;
            color: var(--pure-white);
            text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
        }

        .page-banner p {
            font-size: 1.2rem;
            margin-bottom: 30px;
            text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
        }

        /* Mission Section */
        .mission {
            background-color: var(--pure-white);
            text-align: center;
        }

        .mission-content {
            max-width: 800px;
            margin: 0 auto;
            opacity: 0;
            transform: translateY(30px);
        }

        .mission-content p {
            font-size: 1.2rem;
            line-height: 1.8;
            margin-bottom: 30px;
        }

        .mission-icon {
            font-size: 3rem;
            color: var(--shea-butter);
            margin-bottom: 20px;
        }

        /* Story Section */
        .story {
            background-color: var(--cream-ivory);
        }

        .story-container {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 50px;
            align-items: center;
        }

        .story-image {
            position: relative;
            border-radius: 15px;
            overflow: hidden;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            opacity: 0;
            transform: translateX(-30px);
        }

        .story-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .story-content {
            opacity: 0;
            transform: translateX(30px);
        }

        .story-content h2 {
            font-size: 2.2rem;
            margin-bottom: 20px;
            color: var(--shea-butter);
        }

        .story-content p {
            margin-bottom: 20px;
            line-height: 1.8;
        }

        .founder-signature {
            font-family: 'Brush Script MT', cursive;
            font-size: 1.8rem;
            color: var(--shea-butter);
            margin-top: 20px;
        }

        /* Philosophy Section */
        .philosophy {
            background-color: var(--olive-green);
            color: var(--pure-white);
        }

        .philosophy .section-title h2 {
            color: var(--pure-white);
        }

        .philosophy .section-title h2::after {
            background-color: var(--honey-gold);
        }

        .philosophy-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }

        .philosophy-item {
            background-color: rgba(255, 255, 255, 0.1);
            padding: 30px;
            border-radius: 15px;
            text-align: center;
            transition: all 0.3s ease;
            opacity: 0;
            transform: translateY(30px);
        }

        .philosophy-item:hover {
            background-color: rgba(255, 255, 255, 0.2);
            transform: translateY(-10px);
        }

        .philosophy-icon {
            font-size: 2.5rem;
            color: var(--honey-gold);
            margin-bottom: 20px;
        }

        .philosophy-item h3 {
            color: var(--pure-white);
            margin-bottom: 15px;
        }

        .philosophy-item p {
            line-height: 1.6;
        }

        /* Team Section */
        .team {
            background-color: var(--pure-white);
        }

        .team-container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 30px;
        }

        .team-card {
            perspective: 1000px;
            height: 350px;
            opacity: 0;
            transform: translateY(30px);
        }

        .team-card-inner {
            position: relative;
            width: 100%;
            height: 100%;
            transition: transform 0.8s;
            transform-style: preserve-3d;
        }

        .team-card:hover .team-card-inner {
            transform: rotateY(180deg);
        }

        .team-card-front, .team-card-back {
            position: absolute;
            width: 100%;
            height: 100%;
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            border-radius: 15px;
            overflow: hidden;
        }

        .team-card-front {
            background-color: var(--cream-ivory);
        }

        .team-card-back {
            background-color: var(--shea-butter);
            color: var(--pure-white);
            transform: rotateY(180deg);
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            text-align: center;
        }

        .team-img {
            height: 250px;
            overflow: hidden;
        }

        .team-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-info {
            padding: 20px;
            text-align: center;
        }

        .team-info h3 {
            margin-bottom: 5px;
            color: var(--shea-butter);
        }

        .team-info p {
            color: var(--cocoa-brown);
            font-style: italic;
        }

        .team-social {
            display: flex;
            justify-content: center;
            gap: 15px;
            margin-top: 20px;
        }

        .team-social a {
            color: var(--pure-white);
            font-size: 1.2rem;
            transition: all 0.3s ease;
        }

        .team-social a:hover {
            transform: translateY(-5px);
        }

        .team-card-back h3 {
            color: var(--pure-white);
            margin-bottom: 15px;
        }

        .team-card-back p {
            margin-bottom: 20px;
            line-height: 1.6;
        }

        /* Testimonials */
        .testimonials {
            background-color: var(--cream-ivory);
            padding: 100px 0;
        }

        .testimonial-container {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            overflow: hidden;
        }

        .testimonial-slider {
            display: flex;
            transition: transform 0.5s ease;
        }

        .testimonial {
            min-width: 100%;
            padding: 30px;
            text-align: center;
        }

        .testimonial-img {
            width: 100px;
            height: 100px;
            border-radius: 50%;
            overflow: hidden;
            margin: 0 auto 20px;
            border: 3px solid var(--honey-gold);
        }

        .testimonial-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .testimonial-text {
            font-style: italic;
            margin-bottom: 20px;
            line-height: 1.8;
            position: relative;
        }

        .testimonial-text::before,
        .testimonial-text::after {
            content: '"';
            font-size: 2rem;
            color: var(--honey-gold);
        }

        .testimonial-author {
            font-weight: 600;
            color: var(--shea-butter);
        }

        .testimonial-dots {
            display: flex;
            justify-content: center;
            margin-top: 30px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background-color: #ddd;
            margin: 0 5px;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background-color: var(--shea-butter);
            transform: scale(1.2);
        }

        /* Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        /* Responsive Styles */
        @media (max-width: 992px) {
            .page-banner h1 {
                font-size: 2.8rem;
            }

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

            .story-container {
                grid-template-columns: 1fr;
            }

            .story-image {
                margin-bottom: 30px;
            }
        }

        @media (max-width: 768px) {
            .hero {
            height: 60vh;
        }

        .hero-content{
            padding: 3px;
        }
        
            .page-banner h1 {
                font-size: 2.2rem;
            }
        }

        @media (max-width: 576px) {
            .page-banner h1 {
                font-size: 1.8rem;
            }

            .section-title h2 {
                font-size: 1.5rem;
            }

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

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