/* Global Styles */
:root {
    --gold: #D4AF37;
    --black: #000000;
    --white: #FFFFFF;
    --dark-gold: #B8860B;
    --light-gold: #F5D98D;
    --gray: #333333;
    --light-gray: #F5F5F5;
    --header-height: 80px;
    --mobile-header-height: 60px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier Prime', monospace;
    line-height: 1.6;
    color: var(--black);
    background-color: var(--white);
    overflow-x: hidden;
}

h1 {
    font-family: 'Stardos Stencil', sans-serif;
    font-weight: 700;
    color: var(--white);
}

h2, h3, h4, h5, h6 {
    font-family: 'Stardos Stencil', sans-serif;
    font-weight: 700;
    color: var(--black);
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 24px;
    margin: 10px 5px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    min-height: 44px;
    min-width: 44px;
}

.btn.gold {
    background-color: var(--gold);
    color: var(--black);
    border: 2px solid var(--gold);
}

.btn.black {
    background-color: var(--black);
    color: var(--white);
    border: 2px solid var(--black);
}

.btn.white {
    background-color: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Header & Navigation */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    flex-wrap: wrap;
}

.logo {
    font-family: 'Stardos Stencil', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    text-decoration: none;
}


.logo img {
    max-height: 50px;
    width: auto;
  }

.nav-menu {
    display: flex;
    list-style: none;
}

.nav-link {
    color: var(--black);
    text-decoration: none;
    padding: 10px 15px;
    margin: 0 5px;
    font-weight: bold;
    transition: color 0.3s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-link:hover, .nav-link.active {
    color: var(--gold);
}

.menu-toggle {
    display: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    z-index: 1001;
}

.bar {
    display: block !important;
    width: 25px !important;
    height: 3px !important;
    margin: 5px auto !important;
    background-color: var(--black);
    transition: all 0.10s ease;
}

/* Hero Section */
.hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, var(--white) 0%, var(--light-gray) 100%);
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    padding-right: 40px;
}

.hero-text h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    line-height: 1.2;
    color: var(--black);
}

.tagline {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--gray);
}

.hero-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.profile-img {
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Intro Section */
.intro {
    padding: 60px 0;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
}

.intro p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* About Page Styles */
.about-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('');
    background-size: contain;
    background-position: center;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    margin-top: 10px;
    background-attachment: scroll;
}

.bio-section {
    padding: 80px 0;
}

.bio-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 40px;
    line-height: 1.5;
    text-align: justify;
}

.bio-image, .bio-text {
    flex: 1;
    min-width: 300px;
}

.bio-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.vision-mission {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.vision-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    text-align: justify;
}

.vision-box, .mission-box {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: justify;
}

.vision-box h2, .mission-box h2 {
    text-align: center;
}

.established-work {
    padding: 80px 0;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 10px;
    margin-top: 40px;
    text-align: left;
}

.work-item {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--gold);
}

/* Speaking Page Styles */
.speaking-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/speaking-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    margin-top: 10px;
    background-attachment: scroll;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-top: 20px;
}

.topics-section {
    padding: 80px 0;
}

.topics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.topic-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--gold);
    transition: transform 0.3s ease;
}

.topic-card:hover {
    transform: translateY(-10px);
}

.testimonials-section {
    padding: 60px 0;
    background-color: var(--light-gray);
}

.testimonials-slider {
    max-width: 800px;
    margin: 40px auto 0;
}

.testimonial {
    background-color: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-bottom: 30px;
}

.testimonial-author {
    font-weight: bold;
    margin-top: 20px;
    color: var(--gold);
}

.parent {
    text-align: center;
    padding: 20px 0;
}

.parent img {
    width: 350px;
    height: 400px;
    text-align: center;
    border-radius: 10px;
}

.booking-section {
    padding: 20px 0;
    margin-top: 30px;
}

.booking-form {
    max-width: 600px;
    margin: 40px auto 0;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Courier Prime', monospace;
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer */
.footer {
    background-color: var(--black);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.social-links {
    margin-bottom: 20px;
}

.social-icon {
    display: inline-block;
    margin: 0 10px;
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
    min-height: 44px;
    min-width: 44px;
    line-height: 44px;
}

.social-icon:hover {
    color: var(--gold);
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    font-size: 2rem;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: var(--gold);
    margin: 15px auto 0;
}

/* Coaching Page Styles */
.coaching-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/coaching-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    margin-top: 10px;
    background-attachment: scroll;
}

.program-card {
    display: flex;
    align-items: center;
    margin: 60px 0;
    flex-wrap: wrap;
    gap: 40px;
}

.program-content {
    flex: 1;
    min-width: 300px;
    text-align: justify;
}

.program-image {
    flex: 1;
    min-width: 300px;
}

.program-image img {
    width: 100%;
    height: 750px;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.focus-item {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--gold);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.client-info {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.client-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-right: 15px;
}

.coaching-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.form-row {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row .form-group {
    flex: 1;
    min-width: 250px;
}

/* Authorship Page Styles */
.authorship-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/authorship-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    margin-top: 10px;
    background-attachment: scroll;
}

.books-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.book-card {
    text-align: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.book-cover {
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.article-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.article-meta {
    color: var(--gray);
    font-size: 0.9rem;
    margin: 10px 0;
}

.read-more {
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 15px;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

.excerpt-tabs {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    margin-top: 40px;
}

.tab-buttons {
    display: flex;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    padding: 15px 20px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Courier Prime', monospace;
    font-weight: bold;
    flex: 1;
    text-align: center;
    min-height: 44px;
}

.tab-btn.active {
    border-bottom: 3px solid var(--gold);
}

.tab-content {
    padding: 30px;
    display: none;
}

.tab-content.active {
    display: block;
}

/* Leadership Page Styles */
.leadership-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/leadership-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    margin-top: 10px;
    background-attachment: scroll;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.video-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.video-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-card h3 {
    padding: 20px 20px 10px;
}

.video-card p {
    padding: 0 20px 20px;
}

.principles-accordion {
    max-width: 800px;
    margin: 40px auto 0;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.accordion-item {
    border-bottom: 1px solid #eee;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-btn {
    width: 100%;
    padding: 20px;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    font-family: 'Stardos Stencil', sans-serif;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 44px;
}

.accordion-btn::after {
    content: '+';
    font-size: 1.5rem;
}

.accordion-btn.active::after {
    content: '-';
}

.accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.accordion-content.active {
    padding: 0 20px 20px;
    max-height: 500px;
}

.quiz-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.quiz-form {
    text-align: left;
    margin-top: 30px;
}

.quiz-question {
    margin-bottom: 30px;
}

.quiz-question label {
    display: block;
    margin: 10px 0;
    cursor: pointer;
}

/* Resources Page Styles */
.resources-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/resources-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    margin-top: 10px;
    background-attachment: scroll;
}

.book-card {
    display: flex;
    gap: 30px;
    align-items: center;
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.book-cover {
    max-width: 300px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.book-details {
    flex: 1;
    min-width: 250px;
    text-align: justify;
}

.book-details h3 {
    flex: 1;
    min-width: 250px;
    text-align: center;
}

.book-actions {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.course-card {
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-image h3 {
    text-align: center;
}

.course-content {
    padding: 20px;
}

.course-meta {
    display: flex;
    gap: 15px;
    margin: 15px 0;
    color: var(--gray);
    font-size: 0.9rem;
}

.workbooks-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.workbook-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.workbook-icon img {
    width: 150px;
    height: 200px;
    margin-bottom: 20px;
}

.resource-cta {
    padding: 80px 0;
    background-color: var(--black);
    color: var(--white);
    text-align: center;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 30px auto 0;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 4px 0 0 4px;
    font-family: 'Courier Prime', monospace;
}

.newsletter-form button {
    border-radius: 0 4px 4px 0;
}

/* Order Form Styles */
.order-form-section {
    padding: 80px 0;
    background-color: var(--light-gray);
}

.book-order-form {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    margin-top: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    border: 1px solid var(--light-gold);
}

.form-group {
    margin-bottom: 40px;
}

.form-group h3 {
    margin-bottom: 20px;
    color: var(--black);
    border-bottom: 2px solid var(--gold);
    padding-bottom: 10px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.form-column {
    flex: 1;
    min-width: 250px;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: var(--gray);
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Courier Prime', monospace;
    font-size: 1rem;
    background-color: var(--light-gray);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

.form-hint {
    font-size: 0.9rem;
    color: var(--gray);
    margin-top: 5px;
    font-style: italic;
}

.form-submit {
    text-align: center;
    margin-top: 30px;
}

.form-submit button {
    padding: 15px 40px;
    font-size: 1.1rem;
    background-color: var(--gold);
    color: var(--black);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit button:hover {
    background-color: var(--dark-gold);
    color: var(--white);
}

.form-note {
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--gray);
    text-align: center;
}

.hidden {
    position: absolute;
    left: -9999px;
}

/* Success Message */
.form-success {
    display: none;
    padding: 20px;
    background-color: rgba(212, 175, 55, 0.1);
    border-left: 4px solid var(--gold);
    margin-top: 20px;
    border-radius: 4px;
    color: var(--gray);
}

/* Contact Page Styles */
.contact-hero {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('../images/contact-bg.jpg');
    background-size: cover;
    background-position: center;
    color: var(--white);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: auto;
    margin-top: 10px;
    background-attachment: scroll;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.contact-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
}

.contact-icon img {
    width: 100px;
    height: auto;
    margin-bottom: 20px;
}

.contact-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--gold);
    font-weight: bold;
    text-decoration: none;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: 20px;
}

.container {
    margin-top: 20px;
}

.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.social-card {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    text-decoration: none;
    color: var(--black);
    transition: transform 0.3s ease;
}

.social-card:hover {
    transform: translateY(-10px);
}

.social-card img {
    width: 60px;
    margin-bottom: 20px;
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    margin-top: 20px;
}

.newsletter-form input {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Courier Prime', monospace;
}

.menu-open {
    overflow: hidden;
    position: fixed;
    width: 100%;
    height: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }
    
    .nav-menu {
        position: fixed;
        top: var(--header-height);
        left: -100%;
        flex-direction: column;
        background-color: var(--white);
        width: 100%;
        height: calc(100vh - var(--header-height));
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        overflow-y: auto;
        padding: 20px 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-link {
        margin: 10px 0;
        padding: 15px;
        justify-content: center;
    }
    
    .hero-content {
        flex-direction: column;
    }
    
    .hero-text {
        padding-right: 0;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-text h1 {
        font-size: 2.2rem;
    }
    
    .cta-buttons {
        display: flex;
        flex-direction: column;
    }
    
    .bio-content, .vision-content {
        flex-direction: column;
    }
    
    .book-order-form, .coaching-form, .form-container {
        padding: 25px;
    }
    
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    
    .form-column {
        min-width: 100%;
    }
    
    .about-hero,
    .speaking-hero,
    .coaching-hero,
    .authorship-hero,
    .leadership-hero,
    .resources-hero,
    .contact-hero {
        padding-top: calc(var(--mobile-header-height) + 20px);
        min-height: 40vh;
    }
}

@media (max-width: 480px) {
    :root {
        --header-height: 70px;
        --mobile-header-height: 60px;
    }
    
    .hero-text h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .container {
        width: 100%;
        padding: 0 15px;
    }
    
    .btn {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
    
    .card, .form-container, .book-order-form {
        padding: 20px;
    }
    
    .about-hero,
    .speaking-hero,
    .coaching-hero,
    .authorship-hero,
    .leadership-hero,
    .resources-hero,
    .contact-hero {
        min-height: 60vh;
    }
    
    .program-image img {
        height: auto;
    }
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Print styles */
@media print {
    .header, .footer, .menu-toggle {
        display: none !important;
    }
    
    body {
        padding-top: 0;
        background: none;
        color: #000;
    }
    
    .container {
        width: 100%;
        padding: 0;
    }
    
    a::after {
        content: " (" attr(href) ")";
        font-size: 0.8em;
        font-weight: normal;
    }
}