/* Kobukai Kensington - Clean, Professional Styles */

/* Header - contains announcement bar and navigation */
header.fixed-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: white;
  overflow: visible;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  width: 100%;
  margin: 0;
  padding: 0;
  height: auto;
}

.header-spacer {
  width: 100%;
}

/* ANNOUNCEMENT BAR (REMOVE AFTER PROMO ENDS) */
.announcement-bar {
  position: relative;
  background: #1E4ED8;
  color: #FFFFFF;
  border-bottom: 1px solid rgba(255,255,255,0.12);
  width: 100%;
}

.announcement-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 16px;
  box-sizing: border-box;
}

.announcement-text {
  font-size: 0.95rem;
  line-height: 1.2;
}

.announcement-cta {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 700;
  text-decoration: none;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.12);
  color: #fff;
}

.announcement-cta:hover {
  background: rgba(255,255,255,0.18);
}

/* Mobile adjustments */
@media (max-width: 640px) {
  .announcement-inner {
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
  }

  .announcement-text {
    font-size: 0.92rem;
  }

  .announcement-cta {
    width: 100%;
    justify-content: center;
  }
}

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

html {
    -webkit-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    overflow-x: hidden;
}

html, body {
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #f8f9fa;
    color: #333;
    line-height: 1.6;
    font-size: 16px;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Navigation */
header nav {
    background-color: white;
    padding: 1rem 0;
    border-bottom: 1px solid #d32f2f;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: relative;
    width: 100%;
    margin: 0;
    margin-bottom: 0;
    overflow: visible;
    height: auto;
}


nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: nowrap;
    gap: 0;
    overflow: visible;
    height: auto;
}

nav .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #d32f2f;
    text-decoration: none;
    text-align: left;
    margin-right: 2rem;
    line-height: 1;
    margin-bottom: 0;
    padding: 0;
    white-space: nowrap;
    flex-shrink: 0;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    flex-wrap: nowrap;
    margin: 0;
    padding: 0;
    align-items: center;
    flex: 1;
    min-width: 0;
}

nav ul li {
    white-space: nowrap;
    flex-shrink: 0;
}

nav ul li a {
    color: #333;
    text-decoration: none;
    font-size: 1rem;
}

/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
    background: none;
    border: none;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

nav ul li a:hover {
    color: #d32f2f;
}

nav .cta-button {
    background-color: #d32f2f;
    color: white;
    padding: 0.75rem 1.5rem;
    text-decoration: none;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(211, 47, 47, 0.3);
}

nav .cta-button:hover {
    background-color: #b71c1c;
    box-shadow: 0 4px 8px rgba(211, 47, 47, 0.4);
    transform: translateY(-1px);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('assets/hero-instruction.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 6rem 0 4rem;
    text-align: center;
    position: relative;
    margin-top: 0;
    margin-bottom: 0;
    z-index: 1;
}

/* Remove any gaps between header and hero */
header + .hero {
    margin-top: 0;
}


.hero .container {
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.hero .divider {
    width: 100px;
    height: 2px;
    background-color: #d32f2f;
    margin: 0 auto 2rem;
    position: relative;
    z-index: 1;
}

.hero img {
    display: none;
}

.hero .primary-button {
    background-color: #d32f2f;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    margin-top: 2rem;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
    font-weight: 600;
    position: relative;
    z-index: 1;
}

.hero .primary-button:hover {
    background-color: #b71c1c;
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.5);
    transform: translateY(-2px);
}

.primary-button {
    background-color: #d32f2f;
    color: white;
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-size: 1.1rem;
    display: inline-block;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(211, 47, 47, 0.4);
    font-weight: 600;
}

.primary-button:hover {
    background-color: #b71c1c;
    box-shadow: 0 6px 16px rgba(211, 47, 47, 0.5);
    transform: translateY(-2px);
}

.hero-text {
    max-width: 800px;
    margin: 2rem auto 0;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.hero-text p {
    margin-bottom: 1rem;
    color: #ffffff;
}

/* Section Dividers */
.section-divider {
    width: 100%;
    height: 1px;
    background-color: #d32f2f;
    margin: 3rem 0;
}

/* Content Sections */
.content-section {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.content-section .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.content-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.content-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
    color: #333;
}

.content-section p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-section ul {
    margin: 0 auto 1.5rem;
    padding-left: 2rem;
    display: block;
    text-align: left;
    list-style-position: outside;
    max-width: 100%;
}

.content-section li {
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.why-choose .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.why-choose h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.why-choose p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

.why-choose ul {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    border-left: 4px solid #d32f2f;
}

/* Who Trains Section */
.who-trains {
    padding: 5rem 0;
    background-color: white;
}

.who-trains h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.training-blocks {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.training-block {
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border-top: 3px solid #d32f2f;
}

.training-block:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.training-block h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.training-block p {
    font-size: 1rem;
    line-height: 1.7;
}

/* Testimonials */
.testimonials {
    padding: 5rem 0;
    background-color: #f8f9fa;
}

.testimonials h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.testimonial {
    margin-bottom: 2rem;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid #d32f2f;
}

.testimonial-content {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.testimonial-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
    border: 3px solid #d32f2f;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.testimonial-text {
    flex: 1;
}

.testimonial blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    color: #333;
}

.testimonial .author {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.5rem;
}

/* Instagram Section */
.instagram-section {
    padding: 5rem 0;
    background-color: white;
}

.instagram-section h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #333;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.instagram-grid > div {
    background: white;
    padding: 1rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.instagram-grid > div:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.instagram-embed {
    position: relative;
    width: 100%;
    padding-bottom: 177.78%; /* 9:16 aspect ratio */
    overflow: hidden;
}

.instagram-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.instagram-label {
    text-align: center;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    color: #666;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    text-align: center;
}

.final-cta .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 800px;
}

.final-cta p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Next Step Section */
.next-step {
    padding: 4rem 0;
    background-color: #f8f9fa;
}

.next-step .container {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.next-step h2 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.next-step p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #333;
}

/* Page Headers */
.page-header {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.page-header .subtitle {
    font-size: 1.2rem;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
}

/* Training Schedule */
.schedule-list {
    padding: 2rem;
    font-size: 1.2rem;
    line-height: 2;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.schedule-list p {
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #d32f2f;
}


/* Cost Section */
.cost-section {
    padding: 2rem 0;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.cost-section h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #333;
}

.cost-amount {
    font-size: 2.5rem;
    font-weight: 600;
    color: #1f2933;
    margin-bottom: 1.5rem;
}

/* About Instructors */
.instructors {
    padding: 3rem 0;
    background-color: #f8f9fa;
}

.instructor {
    margin-bottom: 3rem;
    padding: 2.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.instructor img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 1.5rem;
    border-radius: 50%;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
    border: 4px solid #d32f2f;
}

.instructor h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.instructor p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

/* Contact Form */
.contact-section {
    padding: 3rem 0;
}

.contact-intro {
    margin-bottom: 3rem;
    text-align: left;
}

.contact-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.contact-method {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    text-align: left;
}

.contact-method h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #333;
}

.contact-method p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-method ul {
    margin: 1rem 0 1.5rem 2rem;
    padding-left: 0;
    list-style-position: outside;
}

.contact-method li {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.contact-method a {
    color: #d32f2f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-method a:hover {
    color: #b71c1c;
    text-decoration: underline;
}

.contact-method em {
    font-style: italic;
    color: #555;
}

.contact-form-card {
    text-align: left;
}

.contact-form-card .contact-form {
    max-width: 600px;
    margin: 2rem 0 0;
    background: transparent;
    padding: 0;
    box-shadow: none;
    text-align: left;
}

.contact-form {
    max-width: 600px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
}

.contact-info {
    margin-bottom: 3rem;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #d32f2f;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info a:hover {
    color: #b71c1c;
    text-decoration: underline;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    font-size: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:hover,
.form-group textarea:hover {
    border-color: #d32f2f;
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d32f2f;
    box-shadow: 0 0 0 3px rgba(211, 47, 47, 0.1);
}

/* Footer */
footer {
    background-color: white;
    padding: 2rem 0;
    border-top: 1px solid #d32f2f;
    text-align: center;
    color: #666;
    font-size: 0.9rem;
    box-shadow: 0 -2px 4px rgba(0,0,0,0.05);
}

/* Responsive Design */

/* Tablet and below */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .content-section h2,
    .why-choose h2,
    .who-trains h2,
    .testimonials h2,
    .instagram-section h2 {
        font-size: 2rem;
    }
}

/* Mobile and small tablets */
@media (max-width: 768px) {
    /* Navigation */
    nav {
        padding: 1rem 0;
        top: var(--announcement-height);
    }

    nav .container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        position: relative;
    }

    nav .logo {
        font-size: 1.3rem;
    }

    /* Hamburger Menu */
    .hamburger {
        display: flex;
        z-index: 1001;
    }

    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: white;
        flex-direction: column;
        gap: 0;
        text-align: left;
        padding: 2rem 2rem 2rem;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 10001;
        overflow-y: auto;
    }

    nav ul.active {
        right: 0;
    }

    nav ul li {
        width: 100%;
        border-bottom: 1px solid #e0e0e0;
    }

    nav ul li a {
        display: block;
        padding: 1rem 0;
        width: 100%;
    }

    nav .cta-button {
        width: 100%;
        text-align: center;
        padding: 0.875rem 1.5rem;
        margin-top: 1rem;
    }

    /* Overlay when menu is open */
    .menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 999;
    }

    .menu-overlay.active {
        display: block;
    }

    /* Container */
    .container {
        padding: 0 1rem;
    }

    /* Hero Section */
    .hero {
        padding: 3rem 0 2rem;
    }

    .hero h1 {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1.5rem;
    }

    .hero .divider {
        width: 80px;
        margin-bottom: 1.5rem;
    }

    .hero-text {
        font-size: 1rem;
        padding: 0 1rem;
    }

    .hero .primary-button {
        padding: 0.875rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 300px;
    }

    /* Section Dividers */
    .section-divider {
        margin: 2rem 0;
    }

    /* Content Sections */
    .content-section {
        padding: 3rem 0;
    }

    .content-section .container {
        padding: 2rem 1.5rem;
    }

    .content-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .content-section h3 {
        font-size: 1.5rem;
        margin-top: 1.5rem;
        margin-bottom: 1rem;
    }

    .content-section p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .content-section ul {
        margin: 0 auto 1.5rem;
        padding-left: 1.5rem;
        display: block;
        text-align: left;
        max-width: 100%;
    }

    .content-section li {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    /* Why Choose Section */
    .why-choose {
        padding: 3rem 0;
    }

    .why-choose .container {
        padding: 2rem 1.5rem;
    }

    .why-choose h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .why-choose p {
        font-size: 1rem;
    }

    .why-choose ul {
        padding: 1.5rem;
        margin: 1.5rem 0;
    }

    /* Who Trains Section */
    .who-trains {
        padding: 3rem 0;
    }

    .who-trains h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .training-blocks {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .training-block {
        padding: 1.5rem;
    }

    .training-block h3 {
        font-size: 1.3rem;
    }

    .training-block p {
        font-size: 0.95rem;
    }

    /* Testimonials */
    .testimonials {
        padding: 3rem 0;
    }

    .testimonials h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .testimonial {
        margin-bottom: 2rem;
        padding: 1.5rem;
    }

    .testimonial-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .testimonial-image {
        width: 80px;
        height: 80px;
    }

    .testimonial-text {
        width: 100%;
    }

    .testimonial blockquote {
        font-size: 1.1rem;
        line-height: 1.6;
        text-align: left;
    }

    .testimonial .author,
    .testimonial .stars {
        text-align: center;
    }

    /* Instagram Section */
    .instagram-section {
        padding: 3rem 0;
    }

    .instagram-section h2 {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .instagram-grid > div {
        padding: 0.75rem;
    }

    /* Final CTA */
    .final-cta {
        padding: 3rem 0;
    }

    .final-cta .container {
        padding: 2rem 1.5rem;
    }

    .final-cta p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .final-cta .primary-button {
        width: 100%;
        max-width: 300px;
        padding: 0.875rem 2rem;
    }

    /* Page Headers */
    .page-header {
        padding: 2.5rem 0 2rem;
    }

    .page-header h1 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }

    .page-header .subtitle {
        font-size: 1rem;
        padding: 0 1rem;
    }

    /* Schedule */
    .schedule-list {
        padding: 1.5rem;
    }

    .schedule-list p {
        font-size: 1.1rem;
        padding: 0.875rem;
    }

    /* Cost Section */
    .cost-section {
        padding: 1.5rem;
    }

    .cost-amount {
        font-size: 2rem;
    }

    .cost-section h2 {
        font-size: 1.5rem;
    }

    /* Instructors */
    .instructors {
        padding: 2rem 0;
    }

    .instructor {
        padding: 2rem 1.5rem;
        margin-bottom: 2rem;
    }

    .instructor img {
        width: 150px;
        height: 150px;
    }

    .instructor h3 {
        font-size: 1.5rem;
    }

    .instructor p {
        font-size: 1rem;
    }

    /* Contact */
    .contact-section {
        padding: 2rem 0;
    }

    .contact-intro {
        margin-bottom: 2rem;
    }

    .contact-intro p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }

    .contact-method {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-method h3 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .contact-method p {
        font-size: 1rem;
        margin-bottom: 0.75rem;
    }

    .contact-method ul {
        margin: 0.75rem 0 1rem 1.5rem;
    }

    .contact-method li {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .contact-form-card .contact-form {
        margin-top: 1.5rem;
        max-width: 100%;
    }

    .contact-info {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
        max-width: 100%;
    }

    .form-group input,
    .form-group textarea {
        font-size: 16px; /* Prevents zoom on iOS */
    }

    /* Content Images */
    .content-image {
        margin: 1.5rem 0;
    }

    /* Footer */
    footer {
        padding: 1.5rem 0;
        font-size: 0.85rem;
    }
}

/* Small mobile devices */
@media (max-width: 480px) {
    .container {
        padding: 0 0.75rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero-text {
        font-size: 0.95rem;
    }

    .content-section h2,
    .why-choose h2,
    .who-trains h2,
    .testimonials h2,
    .instagram-section h2,
    .page-header h1 {
        font-size: 1.5rem;
    }

    .content-section .container,
    .why-choose .container,
    .final-cta .container {
        padding: 1.5rem 1rem;
    }

    .training-block,
    .testimonial,
    .contact-info,
    .contact-method,
    .contact-form {
        padding: 1.25rem;
    }

    .testimonial-image {
        width: 70px;
        height: 70px;
    }

    .hero .primary-button,
    .final-cta .primary-button {
        padding: 0.75rem 1.5rem;
        font-size: 0.95rem;
    }

    nav .cta-button {
        padding: 0.75rem 1.25rem;
        font-size: 0.95rem;
    }

    .cost-amount {
        font-size: 1.75rem;
    }

    .instructor img {
        width: 120px;
        height: 120px;
    }
}

/* Landscape mobile */
@media (max-width: 768px) and (orientation: landscape) {
    .hero {
        padding: 2rem 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }
}



/* Minor helpers */
.section-lead {
    margin-top: -1rem;
    margin-bottom: 2rem;
    color: #666;
    font-size: 1.05rem;
}

.stars {
    margin-top: 0.5rem;
    color: #d32f2f;
    letter-spacing: 0.1rem;
    font-size: 1.1rem;
}

.center-note {
    margin-top: 2rem;
    text-align: center;
    font-size: 1.05rem;
    color: #333;
}

.content-image {
    max-width: 100%;
    height: auto;
    margin: 2rem 0;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}


.secondary-button{display:inline-block;padding:12px 18px;border:2px solid #b30000;color:#b30000;text-decoration:none;border-radius:6px;font-weight:600;margin-top:10px;margin-left:10px;}
.secondary-button:hover{background:#b30000;color:#fff;}
