* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1a1a1a;
    --accent: #004c87;         /* Updated: Deep blue */
    --accent-light: #0066b3;   /* Lighter blue for hover */
    --accent-green: #089d43;   /* New: Green for accents */
    --light: #ffffff;
    --background: #f7f7f7;     /* New: Off-white background */
    --gray: #666666;
    --gray-light: #e8e8e8;     /* Lighter gray to match background */
    --border: #d0d0d0;         /* Softer border color */
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--primary);
    background: var(--background); /* Updated background */
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    background: var(--light);
    border-bottom: 2px solid var(--border);
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-img {
    width: 80px;
    height: 80px;
    border-radius: 8px;
}

.logo-text h1 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent); /* Updated to blue */
    margin-bottom: 0.25rem;
}

.logo-text p {
    color: var(--gray);
    font-size: 1rem;
}

/* Updated Hero Section */
.hero {
    background: linear-gradient(135deg, var(--accent) 0%, #003a66 100%); /* Blue gradient */
    color: var(--light);
    padding: 5rem 0 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
}

.hero-content h2 {
    font-size: 2.75rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    background: var(--accent-green); /* Green button */
    color: var(--light);
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 14px 0 rgba(8, 157, 67, 0.3); /* Green shadow */
}

.cta-button:hover {
    background: #077a36; /* Darker green on hover */
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(8, 157, 67, 0.4);
}

/* Carousel Section */
.carousel-section {
    padding: 3rem 0;
    background: var(--background);
}

.carousel {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.carousel-slide {
    min-width: 100%;
    position: relative;
}

.carousel-slide img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 60%;
    display: block;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--accent);
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: var(--light);
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.carousel-btn-prev {
    left: 20px;
}

.carousel-btn-next {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: var(--light); /* REVERTED: White active dot */
}

/* Improvement Section */
.improvement {
    padding: 4rem 0;
    background: var(--background);
}

.improvement h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent); /* Blue heading */
}

.improvement-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

/* Ensure the grid works well with 6 items */
@media (min-width: 1200px) {
    .improvement-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1199px) and (min-width: 768px) {
    .improvement-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.improvement-item {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-green); /* Green accent border */
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.improvement-item:hover {
    transform: translateY(-3px);
}

.improvement-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--accent); /* Blue headings */
}

.improvement-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Training Section */
.training {
    padding: 4rem 0;
    background: var(--gray-light);
}

.training h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent); /* Blue heading */
}

.training-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.training-item {
    background: var(--light);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    border-top: 3px solid var(--accent); /* Blue top border */
    transition: transform 0.3s ease;
}

.training-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.training-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--accent); /* Blue headings */
}

.training-item p {
    color: var(--gray);
    font-size: 0.95rem;
}

/* Location Section */
.location {
    padding: 3rem 0;
    background: var(--background);
    text-align: center;
}

.location h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--accent); /* Blue heading */
}

.location-note {
    color: var(--gray);
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Coach Profile Section */
.coach-profile-section {
    padding: 5rem 0;
    background: var(--gray-light);
}

.coach-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 4rem;
}

.coach-image-container {
    width: 200px;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
    /* REMOVED: No green border */
}

.coach-headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 25%;
    display: block;
}

.coach-intro h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--accent); /* Blue heading */
    margin-bottom: 1.5rem;
}

.coach-quote {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--accent); /* Blue quote */
    line-height: 1.6;
    border-left: 4px solid var(--accent-green); /* Green border */
    padding-left: 2rem;
    margin: 0;
}

/* About Section */
.about-section {
    margin-bottom: 4rem;
}

.about-header h4 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--accent); /* Blue heading */
    margin-bottom: 2rem;
    text-align: center;
}

.about-content p {
    color: var(--gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: justify;
    font-size: 1.05rem;
}

.about-content p:last-child {
    margin-bottom: 0;
}

/* Experience Grid */
.experience-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.experience-column h5 {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--accent); /* Blue heading */
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-green); /* Green underline */
}

.experience-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.experience-list li {
    padding: 0.8rem 0;
    color: var(--gray);
    line-height: 1.5;
    position: relative;
    padding-left: 1.5rem;
    border-bottom: 1px solid var(--gray-light);
}

.experience-list li:last-child {
    border-bottom: none;
}

.experience-list li::before {
    content: '•';
    color: var(--accent-green); /* Green bullet */
    font-weight: bold;
    position: absolute;
    left: 0;
}

/* Contact Section */
.contact {
    padding: 5rem 0;
    background: var(--background);
}

.contact h3 {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: var(--accent); /* Blue heading */
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.contact-item {
    text-align: center;
    padding: 2rem;
    background: var(--light);
    border-radius: 12px;
    border-top: 4px solid var(--accent); /* Blue top border */
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    border-top-color: var(--accent); /* Blue border on hover */
}

.contact-item strong {
    display: block;
    color: var(--accent); /* Blue labels */
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
    margin: 0;
}

.instagram-handles {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.instagram-handles span {
    display: block;
    color: var(--primary);
    font-size: 1.1rem;
    font-weight: 500;
}

/* Footer */
.footer {
    background: var(--accent); /* Blue footer */
    color: var(--light);
    padding: 2rem 0;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        flex-direction: column;
        text-align: center;
        gap: 0.5rem;
    }

    .logo-text h1 {
        font-size: 1.8rem;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .carousel-slide img {
        height: 400px;
        object-position: center 50%;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }

    .improvement-grid,
    .training-details {
        grid-template-columns: 1fr;
    }

    .coach-header {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .coach-image-container {
        width: 180px;
        height: 180px;
        margin: 0 auto;
    }

    .coach-intro h3 {
        font-size: 1.8rem;
    }

    .coach-quote {
        font-size: 1.1rem;
        padding-left: 1.5rem;
    }

    .experience-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-content p {
        text-align: left;
    }

    .contact-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .carousel-slide img {
        height: 350px;
        object-position: center 40%;
    }

    .improvement h3,
    .training h3,
    .contact h3 {
        font-size: 1.5rem;
    }

    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }

    .coach-image-container {
        width: 150px;
        height: 150px;
    }

    .coach-intro h3 {
        font-size: 1.6rem;
    }

    .coach-quote {
        font-size: 1rem;
    }

    .about-header h4 {
        font-size: 1.4rem;
    }

    .experience-column h5 {
        font-size: 1.2rem;
    }

    .contact-item {
        padding: 1.5rem;
    }
}