 body {
            font-family: 'Roboto', sans-serif;
            line-height: 1.6;
            color: var(--dark-color);
            margin: 0;
            background-color: var(--bg-color);
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        header {
            background: #fff;
            padding: 10px 0;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }
        
        .header-top {
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid #eee;
            padding-bottom: 10px;
            margin-bottom: 10px;
        }
        
        .contact-links a {
            color: var(--dark-color);
            text-decoration: none;
            margin-left: 15px;
            font-size: 14px;
        }
        
        .social-icons a {
            color: var(--dark-color);
            margin-left: 10px;
            font-size: 18px;
        }
        
        .main-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            font-size: 24px;
            font-weight: bold;
        }
        
        .logo a {
            text-decoration: none;
            color: var(--dark-color);
        }
        
        .logo .highlight {
            color: var(--primary-color);
        }
        
        .logo span {
            display: block;
            font-size: 12px;
            font-weight: normal;
            color: var(--secondary-color);
        }
        
        .nav-links {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
        }
        
        .nav-links li a {
            text-decoration: none;
            color: var(--dark-color);
            padding: 10px 15px;
            display: block;
            transition: color 0.3s;
        }
        
        .nav-links li a:hover {
            color: var(--primary-color);
        }

        /* Hamburger Menu Styling */
        .hamburger-menu {
            display: none; /* Hidden by default on desktop */
            flex-direction: column;
            justify-content: space-around;
            width: 30px;
            height: 25px;
            cursor: pointer;
            z-index: 100;
        }
        
        .hamburger-menu .bar {
            width: 100%;
            height: 3px;
            background-color: var(--dark-color);
            border-radius: 5px;
            transition: all 0.3s ease-in-out;
        }
        
        .hamburger-menu.active .bar:nth-child(2) {
            opacity: 0;
        }
        
        .hamburger-menu.active .bar:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        
        .hamburger-menu.active .bar:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }
        
        .info-bar {
            background: var(--secondary-color);
            color: #fff;
            padding: 20px 0;
        }
        
        .info-grid {
            display: flex;
            justify-content: space-around;
            text-align: center;
            
        }
        
        .info-item {
            display: flex;
            align-items: center;
            gap: 15px;
            align-self: center;
        }
        
        .info-item i {
            font-size: 24px;
            color: #fff;
        }
        
        .info-item h3 {
            margin: 0;
            font-size: 18px;
        }
        
        .info-item p {
            margin: 0;
            font-size: 14px;
        }
        
        .info-item a {
            text-decoration: none;
            color: inherit;
        }
        
        section {
            padding: var(--padding-section);
        }
        
        .section-title {
            text-align: center;
            font-size: 32px;
            margin-bottom: 40px;
            color: var(--dark-color);
        }
        
        .about-section {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: flex-start;
        }
        
        .about-image {
            flex: 1;
            min-width: 300px;
        }
        
        .about-image img {
            width: 100%;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .about-content {
            flex: 2;
            min-width: 300px;
        }
        
        .about-content h2 {
            font-size: 28px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .about-content h3 {
            font-size: 21px;
            color: var(--secondary-color);
            margin-top: 0;
        }
        
        .about-box {
            background-color: #fff;
            padding: 20px;
            margin-bottom: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .about-box h4 {
            font-size: 16px;
            color: var(--dark-color);
            margin-top: 0;
        }
        
        .about-box p {
            font-weight: normal;
        }
        
        .about-box span {
            font-size: 24px;
            color: var(--primary-color);
            display: block;
            margin-bottom: 10px;
        }
        
        .video-gallery {
            background: var(--light-color);
            padding: var(--padding-section);
        }
        
        .video-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .video-item {
            background: #fff;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            overflow: hidden;
            text-align: center;
        }
        
        .video-item a {
            text-decoration: none;
            color: var(--dark-color);
        }
        
        .video-item img {
            width: 100%;
            height: auto;
            display: block;
        }
        
        .video-item p {
            padding: 15px;
            font-weight: bold;
            margin: 0;
            min-height: 70px;
        }
        
        .team-section {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            background: #fff;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .team-member-info {
            flex: 2;
            min-width: 300px;
        }
        
        .team-member-info h3 {
            font-size: 28px;
            margin-top: 0;
            color: var(--dark-color);
        }
        
        .team-member-info p {
            font-size: 16px;
        }
        
        .team-member-image {
            flex: 1;
            min-width: 250px;
        }
        
        .team-member-image img {
            width: 100%;
            height: auto;
            border-radius: var(--border-radius);
        }
        
        .services-grid, .treatments-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        
        .service-card, .treatment-card {
            background: #fff;
            padding: 20px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
            text-align: left;
            min-height: 200px;
        }

        .service-card h4 {
            font-size: 18px;
            font-weight: bold;
            color: var(--secondary-color);
        }
        
        .treatment-card h4 {
            background: var(--secondary-color);
            color: #fff;
            padding: 10px;
            margin-top: 0;
            border-radius: var(--border-radius) var(--border-radius) 0 0;
            text-align: center;
        }
        
        .treatment-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        
        .treatment-card li {
            text-align: left;
            font-size: 18px;
            padding: 5px;
            font-weight: 600;
        }
        
        .articles-section {
            background-color: #80808061;
            padding: 40px;
            border-radius: var(--border-radius);
        }
        
        .articles-section h3 {
            font-size: 25px;
            font-weight: bold;
            margin-bottom: 20px;
        }
        
        .articles-section ul {
            list-style: none;
            padding: 0;
        }
        
        .articles-section li {
            margin-bottom: 15px;
        }
        
        .articles-section a {
            font-size: 20px;
            color: #005aff;
            text-decoration: none;
            line-height: 1.5;
        }
        
        .articles-section a:hover {
            text-decoration: underline;
        }
        
        .testimonials-section {
            background: var(--light-color);
            padding: var(--padding-section);
        }
        
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 20px;
        }
        
        .testimonial-card {
            background: #fff;
            padding: 25px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .testimonial-card .quote-icon {
            font-size: 24px;
            color: var(--primary-color);
            margin-bottom: 10px;
        }
        
        .testimonial-card p {
            font-style: italic;
            margin-bottom: 15px;
        }
        
        .testimonial-card h5 {
            font-weight: bold;
            text-align: right;
            color: var(--dark-color);
            margin: 0;
        }
        
        .map-section iframe {
            width: 100%;
            border-radius: var(--border-radius);
        }
        
        .image-gallery {
            padding: var(--padding-section);
        }
        
        .image-gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
        }
        
        .image-gallery-item img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }

        .faq-section {
            padding: var(--padding-section);
            background: var(--light-color);
        }

        .faq-accordion {
            max-width: 800px;
            margin: 0 auto;
        }

        .accordion {
            background-color: #fff;
            color: var(--dark-color);
            cursor: pointer;
            padding: 18px;
            width: 100%;
            border: none;
            text-align: left;
            outline: none;
            font-size: 16px;
            transition: 0.4s;
            border-radius: var(--border-radius);
            margin-bottom: 10px;
            box-shadow: var(--box-shadow);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .accordion:hover, .accordion.active {
            background-color: var(--secondary-color);
            color: #fff;
        }

        .accordion:after {
            content: '\002B';
            color: var(--primary-color);
            font-weight: bold;
            float: right;
            margin-left: 5px;
        }

        .accordion.active:after {
            content: "\2212";
            color: #fff;
        }

        .panel {
            padding: 0 18px;
            background-color: white;
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.2s ease-out;
            margin-bottom: 10px;
            border-radius: var(--border-radius);
        }
        
        .contact-form-section {
            background: var(--light-color);
            padding: var(--padding-section);
        }
        
        .contact-form-section form {
            max-width: 600px;
            margin: 0 auto;
            background: #fff;
            padding: 40px;
            border-radius: var(--border-radius);
            box-shadow: var(--box-shadow);
        }
        
        .contact-form-section input, .contact-form-section textarea {
            width: 100%;
            padding: 15px;
            margin-bottom: 20px;
            border: 1px solid #ddd;
            border-radius: var(--border-radius);
            box-sizing: border-box;
        }
        
        .contact-form-section textarea {
            resize: vertical;
            min-height: 150px;
        }
        
        .contact-form-section input[type="submit"] {
            background: var(--primary-color);
            color: #fff;
            border: none;
            cursor: pointer;
            font-size: 18px;
            transition: background 0.3s;
        }
        
        .contact-form-section input[type="submit"]:hover {
            background: #b85c5c;
        }
        
        footer {
            background: var(--dark-color);
            color: #fff;
            padding: 40px 0 20px;
        }
        
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            justify-content: space-between;
        }
        
        .footer-col {
            flex: 1;
            min-width: 250px;
        }
        
        .footer-col h4 {
            color: var(--primary-color);
            margin-bottom: 20px;
        }
        
        .footer-col ul {
            list-style: none;
            padding: 0;
        }
        
        .footer-col li {
            margin-bottom: 10px;
            display: flex;
            align-items: center;
        }
        
        .footer-col a {
            color: #fff;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer-col a:hover {
            color: var(--primary-color);
        }
        
        .footer-col .fa {
            margin-right: 10px;
            color: var(--primary-color);
        }
        
        .footer-social-icons {
            display: flex;
            gap: 15px;
            margin-top: 20px;
        }
        
        .footer-social-icons a {
            background: #fff;
            color: var(--dark-color);
            width: 35px;
            height: 35px;
            display: flex;
            justify-content: center;
            align-items: center;
            border-radius: 50%;
        }
        
        .copyright {
            text-align: center;
            margin-top: 40px;
            font-size: 14px;
        }

        /* Responsive Design */
        @media (max-width: 768px) {
            .header-top, .info-grid, .about-section, .team-section, .footer-grid {
                flex-direction: column;
                text-align: center;
            }
            
            .info-grid {
                align-items: flex-start;
            }
            
            .info-item {
                flex-direction: column;
                text-align: center;
            }
            
            .main-nav {
                flex-direction: row;
                justify-content: space-between;
            }
            
            .nav-links {
                position: absolute;
                top: 150px; /* Adjust based on your header height */
                right: 0;
                width: 100%;
                flex-direction: column;
                background-color: #fff;
                padding: 20px;
                box-shadow: 0 2px 5px rgba(0,0,0,0.1);
                display: none; /* Hide by default */
            }
            
            .nav-links.active {
                display: flex;
            }
            
            .nav-links li {
                text-align: left;
                margin: 5px 0;
            }
            
            .nav-links li a {
                padding: 10px;
                width: 100%;
            }
            
            .hamburger-menu {
                display: flex;
            }
            
            .logo span {
                text-align: left;
            }