
        /* ---------------- Reset ---------------- */
 * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
           font-family: "Times New Roman", Times, serif;
            color: #d8b56a;

        }

        h1 h2 h3 { 
            font-family:Pt serif ;}

        /* Hero Section */
        .hero-section {

            background: 
                linear-gradient(rgba(40,28,19,0.95), rgba(0,0,0,0.55)),
                url("../img/background.png") center / cover no-repeat;
            min-height: 100vh;
            display: flex;
            flex-direction: column;
        }

        /* Navigation */
        nav {
            padding: 26px 20px;
        }

        .navbar-nav {
            gap: 36px;
        }

        .nav-link {
            font-size: 16px;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: #d8b56a !important;
            padding: 0 !important;
        }

        .navbar-toggler {
            border: none;
            font-size: 28px;
            color: #d8b56a;
            padding: 0;
        }

        .navbar-toggler:focus {
            box-shadow: none;
        }

        /* Hero Content */
        .hero-content h1 {
             font-family:Pt serif ;
            font-size: 64px;
            letter-spacing: 6px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .hero-content p {
            font-size: 22px;
            color: #e6cf92;
        }

        /* About Section */
        .about-section {
            min-height: 100vh;
            padding: 80px 0;
        }

         .about-image-home {
            position: relative; 
         opacity: 0;
            transition: all 1s ease-out;
        }
        
        .about-image-home.visible {
            opacity: 1;
            transform: translateX(0) rotate(0deg);
        }
        
        .about-image-home img {
            width: 100%;
            height: auto;
            transition: transform 0.8s ease;
            border: 10px solid #caa66a;
            border-radius: 26px;
            overflow: hidden;
        }

        .about-image-home img:hover {
           transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
        }

        
        .about-image-package {
            position: relative; 
            border-radius: 10px;
            margin: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            opacity: 0; 
            transition: all 1s ease-out;
        }
        
        .about-image-package.visible {
            opacity: 1;
            transform: translateX(0) rotate(0deg);
            animation: fadeInUp .6s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
        }
        
        .about-image-package img {
            width: 100%;
            height: auto;
            transition: transform 0.8s ease;
            border: 10px solid #caa66a;
            border-radius: 26px;
            overflow: hidden;
        }

        .about-image-package img:hover {
           transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
        }


        .about-image-mission {
            position: relative; 
            border-radius: 10px;
            margin: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: all 1s ease-out;
        }
        
        .about-image-mission.visible {
            opacity: 1;
            transform: translateX(0) rotate(0deg);
        }
        
        .about-image-mission img {
            width: 100%;
            height: auto;
            transition: transform 0.8s ease;
            border: 10px solid #caa66a;
            border-radius: 26px;
            overflow: hidden;
        }

        .about-image-mission img:hover {
           transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
        }

        .about-image-team {
            position: relative; 
            border-radius: 10px;
            margin: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            opacity: 0;
            transition: all 1s ease-out;
        }
        
        .about-image-team.visible {
            opacity: 1;
            transform: translateX(0) rotate(0deg);
        }
        
        .about-image-team img {
            width: 100%;
            height: auto;
            transition: transform 0.8s ease;
            border: 10px solid #caa66a;
            border-radius: 26px;
            overflow: hidden;
        }

        .about-image-team img:hover {
           transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
        }

        .about-image {
            position: relative; 
            border-radius: 10px;
            margin: 20px;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
            opacity: 0;
            /*transform: translateX(-50px) rotate(-5deg);*/
            transition: all 1s ease-out;
        }
        
        .about-image.visible {
            opacity: 1;
            transform: translateX(0) rotate(0deg);
        }
        
        .about-image img {
            width: 100%;
            height: auto;
            transition: transform 0.8s ease;
            border: 10px solid #caa66a;
            border-radius: 26px;
            overflow: hidden;
        }
        .about-image img:hover {
           transform: scale(1.1); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
        }

        .about-text h2 {
            font-family:Pt serif ;
            font-size: 34px;
            letter-spacing: 2px;
            margin-bottom: 25px;
            text-transform: uppercase;
        }

        .about-text p {
            font-size: 18px;
            line-height: 1.9;
            margin-bottom: 18px;
            color: #e6cf92;
        }

        /* Formula Section */
        .formula-section {
            min-height: 100vh;
            padding: 80px 0;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .formula-title h2 {
            font-family:Pt serif ;
            font-size: 28px;
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 60px;
           
        }

        /* Circles */
        .circle-container {
            position: relative;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
        }

        .circle {
            width: 220px;
            height: 220px;
            border: 2px solid #d8b56a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            padding: 28px;
            font-size: 18px;
            line-height: 1.6;
            background: transparent;
            margin: -26px;
        }

        /* Mission Section */
        .mission-section {
            min-height: 100vh;
            padding: 70px 0;
            display: flex;
            align-items: center;
        }

        .image-frame {
            border: 10px solid #caa66a;
            border-radius: 26px;
            overflow: hidden;
            max-width: 420px;
            width: 100%;
        }

        .image-frame img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .mission-content h2 {
            font-size: 27px;
            letter-spacing: 4px;
            margin-bottom: 26px;
            text-transform: uppercase;
            text-align: center;
        }

        .mission-content p {
            font-size: 16px;
            line-height: 1.6;
            margin-bottom: 22px;
            color: #e0c889;
        }

        /* Package Section */
        .package-section {
            min-height: 100vh;
            padding: 60px 0;
        }

        .top-heading h2 {
            font-size: 28px;
            letter-spacing: 4px;
        }

        .package-image {
            border: 10px solid #caa66a;
            border-radius: 26px;
            overflow: hidden;
            max-width: 420px;
            width: 100%;
        }

        .package-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .package-content h3 {
            font-size: 26px;
            letter-spacing: 3px;
            margin-bottom: 20px;
        }

        .package-content p {
            font-size: 18px;
            line-height: 1.1;
            margin-bottom: 12px;
        }

        .package-content ul {
            margin-left: 20px;
            margin-bottom: 25px;
        }

        .package-content ul li {
            margin-bottom: 10px;
            font-size: 15px;
        }

        .package-details {
            font-size: 15px;
            margin-bottom: 40px;
        }

        /* Suitable & Inclusive */

        .package-h h2{text-transform: uppercase;}
        .suitable h4,
        .inclusive h4 {
            font-size: 18px;
            letter-spacing: 3px;
            margin-top: 16px;
            margin-bottom: 16px;
            font-weight: bold;
        }

        .suitable ul {
            margin-left: 18px;
        }

        .suitable ul li {
            margin-bottom: 2px;
        }

        /* Icons */
        .inclusive-icons {
            display: flex;
            gap: 30px;
            flex-wrap: wrap;
        }

        .icon-box {
            text-align: center;
            width: 100px;
        }

        .icon-box p {
            font-weight: bold;
        }

        .icon {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: #111;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 10px;
            font-size: 28px;
            border: 1px solid #caa66a;
        }

        .icon img {
            width: 100%;
            height: 100%;
            padding: 15px;
        }

        /* Therapy Section */
        .therapy-section {
            min-height: 100vh;
            padding: 70px 0;
        }

        .section-title {
            text-align: left;
            font-size: 30px;
            letter-spacing: 4px;
            margin-bottom: 45px;
        }

        .therapy-item {
            margin-bottom: 30px;
        }

        .therapy-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 15px;
            letter-spacing: 2px;
            margin-bottom: 8px;
        }

        .therapy-header span {
            font-size: 14px;
        }

        .therapy-item p {
            font-size: 14px;
            line-height: 1.7;
            opacity: 0.95;
        }

        /* Naturopathy Section */
        .naturopathy-section {
            min-height: 100vh;
            padding: 70px 0;
        }

        .naturopathy-image {
            border: 10px solid #caa66a;
            border-radius: 28px;
            overflow: hidden;
            max-width: 420px;
            width: 100%;
        }

        .naturopathy-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .naturopathy-content h2 {
            font-size: 28px;
            letter-spacing: 4px;
            margin-bottom: 35px;
        }

        .therapy-title {
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 16px;
            letter-spacing: 3px;
            margin-bottom: 10px;
        }

        .therapy-title span {
            font-size: 14px;
        }

        /* Founder Section */
        .founder-section {
            min-height: 100vh;
            padding: 80px 0;
        }

        .founder-image {
            max-width: 420px;
            border: 12px solid #c5a36b;
            border-radius: 28px;
            overflow: hidden;
            width: 100%;
        }

        .founder-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            display: block;
        }

        .founder-content h2 {
            font-size: 28px;
            letter-spacing: 4px;
            margin-bottom: 30px;
        }

        /* Quote */
        .quote {
            font-size: 18px;
            line-height: 1.9;
            position: relative;
            padding: 0 10px;
        }

        .quote::before {
            content: "“";
            font-size: 50px;
            position: absolute;
            left: 30px;
            top: -25px;
            color: #d6b87b;
        }

        .quote::after {
            content: "”";
            font-size: 50px;
            position: absolute;
            right: 100px;
            bottom: -45px;
            color: #d6b87b;
        }

        .quote p {
            margin-bottom: 22px;
        }

        /* Signature */
        .founder-sign {
            margin-top: 35px;
            letter-spacing: 3px;
            font-size: 15px;
        }

        .founder-sign span {
            display: block;
            font-size: 13px;
            margin-top: 6px;
            opacity: 0.9;
        }

        /* Contact Section */
        .contact-section {
            width: 100%;
            min-height: 100vh;
            padding: 80px 0;
        }

        .contact-image {
            border: 14px solid #c4a26a;
            border-radius: 32px;
            overflow: hidden;
            max-width: 420px;
            width: 100%;
        }

        .contact-image img {
            width: 100%;
            height: 100%;
            display: block;
            object-fit: cover;
        }

        .contact-content h2 {
            font-size: 28px;
            letter-spacing: 5px;
            margin-bottom: 50px;
        }

        /* Info List */
        .info-list {
            display: flex;
            flex-direction: column;
            gap: 34px;
        }

        .info-item {
            display: grid;
            grid-template-columns: 48px auto;
            gap: 20px;
            align-items: start;
            font-size: 15px;
            letter-spacing: 1px;
            line-height: 1.8;
        }

        .contact-icon {
            width: 48px;
            height: 48px;
            background: #c4a26a;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #2a1a0f;
            font-size: 20px;
        }

        /* About Tag */
        .about-tag {
            bottom: 30px;
            right: 40px;
            font-size: 14px;
            letter-spacing: 2px;
            opacity: 0.8;
            text-align: right;
        }

@media (max-width: 992px) {
        .about-section {
                padding: 20px 0;
                min-height: auto;
            }
        }

        /* Mobile Responsive */
        @media (max-width: 768px) {
            /* Navigation */
            .navbar-collapse {
                background: rgba(0,0,0,0.85);
                padding: 25px 0;
            }

            .navbar-nav {
                align-items: center;
                gap: 20px;
            }

            /* Hero */
            .hero-content h1 {
                font-size: 42px;
                letter-spacing: 4px;
            }

            .hero-content p {
                font-size: 14px;
            }

            /* About */
            .about-section {
                padding: 10px 0;
                min-height: auto;
            }

            .formula-section {
  padding: 30px 0;
}
  .formula-title h2{
    font-size: 18px;
}


            .about-text h2 {
                font-size: 18px;
                text-align: center;
            }

            .about-text p {
                font-size: 14px;
                text-align: center;
            }

            /* Formula */
            .circle {
                width: 220px;
                height: 220px;
                font-size: 14px;
            }

            /* Mission */
            .mission-content h2 {
                font-size: 26px;
            }

            .mission-content p {
                font-size: 15px;
                text-align: center;
            }

            .about-tag {
                position: static;
                margin-top: 30px;
                text-align: center;
            }

            /* Package */
            .top-heading h2 {
                width: 100%;
                text-align: center;
            }

            .inclusive-icons {
                justify-content: center;
            }

            /* Therapy */
            .section-title {
                text-align: center;
            }

            /* Naturopathy */
            .naturopathy-content h2 {
                text-align: center;
            }

            .naturopathy-image {
                margin: 0 auto;
            }

            /* Founder */
            .founder-content h2 {
                text-align: center;
            }

            .founder-image {
                margin: 0 auto;
            }

            .quote::before,
            .quote::after {
                display: none;
            }

            /* Contact */
            .contact-content h2 {
                text-align: center;
            }

            .contact-image {
                margin: 0 auto;
            }
        }

        @media (max-width: 576px) {
            .circle-container {
                flex-direction: column;
                align-items: center;
            }
            
            .circle {
                margin: 0 !important;
            }
        }
    