
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            line-height: 1.4;
            color: #333;
            background-color: #f9f9f9;
        }
        :root {
            --primary: #0D5778;
            --secondary: #94d2bd;
            --accent: #ee9b00;
            --dark: #005f73;
            --light: #e9d8a6;
            --white: #ffffff;
            --gray: #f8f9fa;
            --dark-gray: #6c757d;
            --text: #212529;
            --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
            --transition: all 0.3s ease;
        }
        .container {
            width: 90%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 15px;
        }
        
        /* Header Styles */
        header {
            background-color: #0D5778;
            color: white;
            padding: 20px 0;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
      
        .logo span {
            color: #ffff;
        }
        
        /* Navigation Styles */
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            position: relative;
            margin-left: 20px;
        }
        
        nav ul li a {
            color: #ffffff;
            text-decoration: none;
            font-weight: 500;
            padding: 10px 15px;
            transition: all 0.3s ease;
        }
        
        nav ul li a:hover {
            color: #ffd700;
        }
        
        /* Dropdown Menu */
        .dropdown-menu {
            display: none;
            position: absolute;
            background-color: white;
            min-width: 200px;
            box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
            z-index: 1;
            border-radius: 5px;
            top: 100%;
            left: 0;
        }
        
        .dropdown-menu li {
            margin: 0;
            border-bottom: 1px solid #eee;
        }
        
        .dropdown-menu li:last-child {
            border-bottom: none;
        }
        
        .dropdown-menu li a {
            color: #333;
            display: block;
            padding: 10px 15px;
        }
        
        .dropdown-menu li a:hover {
            background-color: #f0f0f0;
            color: #0D5778;
        }
        
        .dropdown:hover .dropdown-menu {
            display: block;
        }
        
        /* Hero Section */
        .hero {
            background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('/images/collagen-tablets-bowl-light-back.avif');
            background-size: cover;
            background-position: center;
            color: white;
            text-align: center;
            padding: 100px 20px;
        }
        
        .hero h1 {
            font-size: 2.5rem;
            margin-bottom: 20px;
        }
        
        .hero p {
            font-size: 1.2rem;
            max-width: 800px;
            margin: 0 auto 30px;
        }
        
        .btn {
            display: inline-block;
            background-color: #0D5778;
            color: #fff;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            transition: all 0.3s ease;
        }
        
        .btn:hover {
            background-color: #1f5652;
            transform: translateY(-3px);
        }
        
        /* Main Content */
        .main-content {
            padding: 60px 0;
        }
        
        .section-title {
            text-align: center;
            margin-bottom: 40px;
            color: #0D5778;
            font-size: 2rem;
        }
        
        .about-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 60px;
        }
        
        .about-text {
            flex: 1;
            min-width: 300px;
            padding-right: 30px;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .about-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        /* Diseases Treated */
        .diseases-section {
            background-color: white;
            padding: 40px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            margin-bottom: 60px;
        }
        
        .diseases-list {
            columns: 2;
            column-gap: 40px;
            margin-top: 20px;
        }
        
        .diseases-list li {
            margin-bottom: 10px;
            list-style-position: inside;
        }
        
        /* Dr. Profile */
        .profile-section {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            margin-bottom: 60px;
        }
        
        .profile-image {
            flex: 1;
            min-width: 300px;
            text-align: center;
        }
        
        .profile-image img {
            max-width: 100%;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        }
        
        .profile-text {
            flex: 1;
            min-width: 300px;
            padding-left: 30px;
        }
        
        /* Blog Section */
        .blog-section {
            margin-bottom: 60px;
        }
        
        .blog-posts {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .blog-post {
            background-color: white;
            border-radius: 10px;
            overflow: hidden;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
            transition: transform 0.3s ease;
        }
        
        .blog-post:hover {
            transform: translateY(-10px);
        }
        
        .blog-post img {
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        
        .blog-content {
            padding: 20px;
        }
        
        .blog-date {
            color: #777;
            font-size: 0.9rem;
            margin-bottom: 10px;
        }
        
        .blog-title {
            font-size: 1.2rem;
            margin-bottom: 10px;
            color: #0D5778;
        }
        
        /* Contact Page */
        .contact-section {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
        }
        
        .contact-info {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-form {
            flex: 1;
            min-width: 300px;
            background-color: white;
            padding: 30px;
            border-radius: 10px;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        }
        
        .contact-info h3, .contact-form h3 {
            margin-bottom: 20px;
            color: #0D5778;
        }
        
        .contact-item {
            display: flex;
            align-items: flex-start;
            margin-bottom: 20px;
        }
        
        .contact-icon {
            margin-right: 15px;
            color: #0D5778;
            font-size: 1.2rem;
        }
        
        .form-group {
            margin-bottom: 20px;
        }
        
        .form-group label {
            display: block;
            margin-bottom: 5px;
            font-weight: 500;
        }
        
        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 10px;
            border: 1px solid #ddd;
            border-radius: 5px;
            font-size: 1rem;
        }
        
        .form-group textarea {
            height: 150px;
        }
        
        /* Formula Page */
        .formula-section {
        background-color: white;
        padding: 20px;
        border-radius: 10px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        margin-bottom: 60px;
        overflow: hidden; /* Add this to prevent content overflow */
    }
    
    .formula-header {
        text-align: center;
        margin-bottom: 30px;
    }
    
    .formula-content {
        display: flex;
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .formula-text {
        flex: 1;
        min-width: 0; /* Add this to prevent flex item overflow */
        padding: 0 10px; /* Add some padding */
    }
    
    .formula-image {
        flex: 1;
        min-width: 300px;
        text-align: center;
    }
    
    .formula-image img {
        max-width: 100%;
        border-radius: 10px;
        height: auto;
    }
    
    .ingredients-list {
        margin-top: 20px;
        padding-left: 20px; /* Ensure proper indentation */
    }
    
    .ingredients-list li {
        margin-bottom: 15px;
        list-style-type: disc;
        word-wrap: break-word; /* Ensure long words break */
    }
    
    /* Mobile Responsive Adjustments */
    @media (max-width: 768px) {
        .formula-section {
            padding: 15px;
        }
        
        .formula-content {
            flex-direction: column;
            gap: 20px;
        }
        
        .formula-text {
            min-width: 100%;
            padding: 0;
        }
        
        .formula-image {
            min-width: 100%;
            order: -1; /* Move image above text on mobile */
        }
        
        .ingredients-list {
            padding-left: 15px;
        }
        
        .ingredients-list li {
            margin-bottom: 10px;
        }
    }
    
    @media (max-width: 480px) {
        .formula-header h1 {
            font-size: 1.5rem; /* Smaller heading on very small screens */
        }
        
        .formula-section {
            padding: 10px;
        }
        
        .ingredients-list li {
            margin-bottom: 8px;
            font-size: 0.9rem; /* Slightly smaller font for ingredients */
        }
    }
        
        .buy-now-btn {
            display: inline-block;
            background-color: #0D5778;
            color: white;
            padding: 12px 30px;
            border-radius: 5px;
            text-decoration: none;
            font-weight: bold;
            margin-top: 20px;
            transition: all 0.3s ease;
        }
        
        .buy-now-btn:hover {
            background-color: #1f5652;
        }
        
        /* Footer */
        footer {
            background-color: #0D5778;
            color: white;
            padding: 40px 0 20px;
        }
        
        .footer-container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 40px;
        }
        
        .footer-section {
            flex: 1;
            min-width: 200px;
        }
        
        .footer-section h3 {
            margin-bottom: 20px;
            position: relative;
            padding-bottom: 10px;
        }
        
        .footer-section h3::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 50px;
            height: 2px;
            background-color: #ffd700;
        }
        
        .footer-section ul li {
            margin-bottom: 10px;
            list-style: none;
        }
        
        .footer-section ul li a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s ease;
        }
        
        .footer-section ul li a:hover {
            color: #ffd700;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
        }

        .hamburger {
            display: none;
            flex-direction: column;
            cursor: pointer;
            width: 30px;
            height: 25px;
            justify-content: space-between;
            z-index: 1002;
        }
        .hamburger span {
            display: block;
            height: 4px;
            width: 100%;
            background: #ffd700;
            border-radius: 2px;
            transition: 0.3s;
        }
        
        /* Responsive */
        @media (max-width: 768px) {
            
            
             .hamburger {
                display: flex;
                margin-left: auto;
            }
            nav {
                position: absolute;
                top: 70px;
                left: 0;
                width: 100%;
                background: #0D5778;
                display: none;
                flex-direction: column;
                z-index: 1001;
            }
            nav.active {
                display: flex;
            }
            nav ul {
                flex-direction: column;
                align-items: flex-start;
                width: 100%;
                margin: 0;
            }
            nav ul li {
                margin: 0;
                width: 100%;
            }
            nav ul li a {
                width: 100%;
                display: block;
                padding: 15px 20px;
                border-bottom: 1px solid #23645f;
            }
            .dropdown-menu {
                position: static;
                box-shadow: none;
                background: #23645f;
                width: 100%;
            }
            .dropdown:hover .dropdown-menu,
            .dropdown:focus-within .dropdown-menu {
                display: none;
            }
            .dropdown.open .dropdown-menu {
                display: block;
            }
            
            .about-text, .profile-text {
                padding-right: 0;
                padding-left: 0;
                margin-bottom: 30px;
            }
            
            .diseases-list {
                columns: 1;
            }
            .dropdown-menu li a {
            color: white;
           }
        }
        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            }
        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }
        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(6px, -6px);
        }
  

         .back-to-top {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 50px;
            height: 50px;
            background-color: var(--accent);
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            box-shadow: var(--shadow);
            opacity: 0;
            visibility: hidden;
            transition: var(--transition);
            z-index: 99;
        }
        
        .back-to-top.active {
            opacity: 1;
            visibility: visible;
        }
        
        .back-to-top:hover {
            background-color: var(--primary);
            transform: translateY(-5px);
        }
        .social-links {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .social-links a {
            width: 40px;
            height: 40px;
            background-color: rgba(255, 255, 255, 0.1);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--white);
            transition: var(--transition);
        }
        
        .social-links a:hover {
            background-color: var(--accent);
            transform: translateY(-3px);
        }
/*        .fa,.fa-brands,.fa-classic,.fa-regular,.fa-sharp,.fa-solid,.fab,.far,.fas {*/
/*            -moz-osx-font-smoothing: grayscale;*/
/*            -webkit-font-smoothing: antialiased;*/
/*            display: var(--fa-display,inline-block);*/
/*            font-style: normal;*/
/*            font-variant: normal;*/
/*            line-height: 1;*/
/*            text-rendering: auto*/
/*        }*/
        
/*        .fa-classic,.fa-regular,.fa-solid,.far,.fas {*/
/*            font-family: "Font Awesome 6 Free"*/
/*        }*/
        
/*        .fa-brands,.fab {*/
/*            font-family: "Font Awesome 6 Brands"*/
/*        }*/
/*        .fa-pills:before {*/
/*            content: "\f484"*/
/*        }*/
/*        .fa-heart:before {*/
/*    content: "\f004"*/
/*}*/
/*.fa-baby:before {*/
/*    content: "\f77c"*/
/*}*/
/*.fa-flask:before {*/
/*    content: "\f0c3"*/
/*}*/
/*.fa-arrow-up:before {*/
/*    content: "\f062"*/
/*}*/
/*.fa-chevron-right:before {*/
/*    content: "\f054"*/
/*}*/
/*.fa-instagram:before {*/
/*    content: "\f16d"*/
/*}*/
/*.fa-facebook-f:before {*/
/*    content: "\f39e"*/
/*}*/
/*.fa-twitter:before {*/
/*    content: "\f099"*/
/*}*/
/*.fa-linkedin-in:before {*/
/*    content: "\f0e1"*/
/*}*/
        html {
            scroll-behavior: smooth;
            }
            
