:root {
    --primary: #0036b1;
    --accent: #cfae00;
    --light: #f8f9fa;
    --dark: #212529;
    --secondary: #8ac4d0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
}

a {
    text-decoration: none;
    color: var(--primary);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Bar */
.top-bar {
    background-color: var(--primary);
    color: white;
    padding: 10px 0;
}

.top-bar-phone {
    display: flex;
    align-items: center;
}

.top-bar-phone i {
    margin-right: 8px;
}

.top-bar a {
    color: white;
}

/* Header */
header {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    height: 80px;
}

nav ul {
    display: flex;
}

nav ul li {
    margin-left: 20px;
}

nav ul li a {
    color: var(--dark);
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

nav ul li a:hover,
nav ul li a.active {
    background-color: var(--light);
    color: var(--primary);
}

.booking-btn {
    background-color: var(--accent);
    color: white !important;
    padding: 8px 16px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.booking-btn:hover, 
.booking-btn.active {
    background-color: #b89b00;
    color: white !important;
}

/* Hero Sections */
.hero, .bio-hero, .services-hero, .contact-hero, .booking-hero {
    background-color: var(--primary);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h1, .bio-hero h1, .services-hero h1, .contact-hero h1, .booking-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.hero p, .bio-hero p, .services-hero p, .contact-hero p, .booking-hero p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px;
}

.btn {
    display: inline-block;
    background-color: var(--accent);
    color: white;
    padding: 12px 24px;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-weight: bold;
    text-align: center;
}

.btn:hover {
    background-color: #b89b00;
}

/* Sections */
section {
    padding: 60px 0;
}

section h2 {
    text-align: center;
    margin-bottom: 40px;
    color: var(--primary);
}

/* Video Section */
.video-section {
    background-color: var(--light);
}

.video-wrapper {
    max-width: 800px;
    margin: 0 auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    overflow: hidden;
}

video {
    width: 100%;
    display: block;
}

.video-controls {
    background-color: white;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Intro Section */
.intro {
    background-color: white;
}

.intro-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.intro-image {
    flex: 0 0 30%;
    max-width: 30%;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intro-text {
    flex: 0 0 65%;
}

.intro-text p {
    margin-bottom: 20px;
}

/* Specialties Section */
.specialties {
    background-color: var(--light);
}

.specialties .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.specialty-column {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.specialty-column h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    background-color: white;
}

.testimonial-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
}

.testimonial {
    background-color: var(--light);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.testimonial p {
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial cite {
    font-weight: bold;
    color: var(--primary);
}

/* Services */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-img {
    height: 200px;
    overflow: hidden;
}

.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 20px;
}

.service-content h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

/* Services List Styles */
.services-overview {
    background-color: white;
    padding-bottom: 20px;
}

.service-intro {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.services-list {
    background-color: var(--light);
}

.service-item {
    display: flex;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.service-content {
    flex: 1;
    padding: 30px;
}

.service-content h2 {
    text-align: left;
    color: var(--primary);
    margin-bottom: 15px;
}

.service-image {
    flex: 1;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-cta {
    background-color: white;
    text-align: center;
}

.service-cta h2 {
    margin-bottom: 20px;
}

.service-cta p {
    max-width: 600px;
    margin: 0 auto 30px;
}

/* Bio sections */
.bio-content {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 40px;
}

.bio-image {
    flex: 0 0 30%;
    max-width: 30%;
    border-radius: 8px;
    overflow: hidden;
}

.bio-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.bio-text {
    flex: 0 0 65%;
}

.bio-text h2 {
    text-align: left;
    margin-bottom: 20px;
}

.bio-text p {
    margin-bottom: 15px;
}

.credentials {
    background-color: var(--light);
}

.credentials-list {
    max-width: 800px;
    margin: 0 auto;
}

.credentials-list ul {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.credentials-list li {
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.credentials-list li:before {
    content: "•";
    color: var(--accent);
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact sections */
.contact-info {
    background-color: white;
}

.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
}

.contact-item h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.appointment {
    background-color: var(--light);
    text-align: center;
}

.appointment .btn {
    margin: 20px 0;
}

/* Booking Sections */
.booking-section {
    padding: 60px 0;
    background-color: white;
}

.booking-section .calendar-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    margin-bottom: 80px;
}

.booking-info {
    padding: 60px 0;
    background-color: var(--light);
}

.info-columns {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-column {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.info-column h3 {
    color: var(--primary);
    margin-bottom: 15px;
}

/* Social Connect */
.social-connect {
    background-color: var(--light);
    text-align: center;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.social-icon {
    display: inline-block;
    width: 60px;
    height: 60px;
    background-color: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--accent);
    transform: translateY(-5px);
}

.social-icon span {
    font-size: 0;
}

/* Footer */
footer {
    background-color: var(--primary);
    color: white;
    padding: 60px 0 20px;
}

footer a {
    color: white;
}

.footer-info {
    margin-bottom: 30px;
}

.footer-info h3 {
    margin-bottom: 15px;
}

.footer-info p {
    margin-bottom: 5px;
}

.social-links {
    margin-bottom: 30px;
}

.social-links a {
    margin-right: 15px;
}

.copyright {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
    }
    
    .logo-container {
        margin-bottom: 20px;
    }
    
    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }
    
    nav ul li {
        margin: 5px;
    }
    
    .intro-image,
    .bio-image {
        flex: 0 0 40%;
        max-width: 40%;
    }
    
    .intro-text,
    .bio-text {
        flex: 0 0 55%;
    }
    
    .specialties .container,
    .services-grid,
    .info-columns {
        grid-template-columns: 1fr;
    }
    
    .service-item {
        flex-direction: column;
    }
    
    .service-item:nth-child(even) {
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .intro-content,
    .bio-content {
        gap: 20px;
    }
    
    .intro-image,
    .bio-image {
        flex: 0 0 100%;
        max-width: 50%;
        margin: 0 auto;
    }
    
    .intro-text,
    .bio-text {
        flex: 0 0 100%;
        text-align: center;
    }
}