/* ============================================
   ULTRIVA MASTERCLASS - PROFESSIONAL CORPORATE CSS
   Design Style: Professional Corporate Aesthetic
   ============================================ */

/* ============================================
   CSS RESET & BASE STYLES
   ============================================ */

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #2C3E50;
    background-color: #FFFFFF;
    overflow-x: hidden;
}

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

a {
    color: #1A4D7C;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #C4965F;
}

ul, ol {
    list-style-position: inside;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.2;
    color: #1A4D7C;
    margin-bottom: 16px;
}

h1 {
    font-size: 48px;
}

h2 {
    font-size: 32px;
}

h3 {
    font-size: 24px;
}

h4 {
    font-size: 18px;
}

p {
    margin-bottom: 16px;
}

strong {
    font-weight: 600;
    color: #1A4D7C;
}

em {
    font-style: italic;
}

/* ============================================
   LAYOUT CONTAINERS
   ============================================ */

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper {
    width: 100%;
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */

header {
    background-color: #FFFFFF;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

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

.logo img {
    height: 50px;
    width: auto;
}

.main-nav {
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
}

.main-nav a {
    font-size: 16px;
    font-weight: 500;
    color: #2C3E50;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.main-nav a:hover {
    color: #1A4D7C;
    background-color: #E8F1F8;
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: #1A4D7C;
    color: #FFFFFF;
    border: none;
    padding: 12px 20px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
    background-color: #C4965F;
}

/* Mobile Menu Overlay */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 300px;
    height: 100vh;
    background-color: #1A4D7C;
    z-index: 2000;
    padding: 32px 24px;
    transition: transform 0.3s ease, right 0.3s ease;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
    transform: translateX(0);
}

.mobile-menu-close {
    background: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
    padding: 8px 16px;
    font-size: 24px;
    cursor: pointer;
    border-radius: 4px;
    margin-bottom: 32px;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: #FFFFFF;
    color: #1A4D7C;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.mobile-nav a {
    color: #FFFFFF;
    font-size: 18px;
    font-weight: 500;
    padding: 12px 16px;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.mobile-nav a:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   HERO SECTIONS
   ============================================ */

.hero {
    background: linear-gradient(135deg, #1A4D7C 0%, #2C5F8D 100%);
    color: #FFFFFF;
    padding: 80px 20px;
    margin-bottom: 60px;
    text-align: center;
}

.hero h1 {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.hero h2 {
    color: #E8F1F8;
    font-size: 24px;
    font-weight: 400;
    margin-bottom: 24px;
}

.hero p {
    font-size: 18px;
    line-height: 1.8;
    color: #E8F1F8;
    max-width: 800px;
    margin: 0 auto 32px;
}

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.trust-indicators {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-indicators p {
    font-size: 14px;
    color: #E8F1F8;
    margin-bottom: 0;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    text-align: center;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    text-decoration: none;
}

.btn-primary {
    background-color: #C4965F;
    color: #FFFFFF;
    border-color: #C4965F;
}

.btn-primary:hover {
    background-color: #B38654;
    border-color: #B38654;
    color: #FFFFFF;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(196, 150, 95, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-secondary:hover {
    background-color: #FFFFFF;
    color: #1A4D7C;
    border-color: #FFFFFF;
}

.btn:active {
    transform: translateY(0);
}

/* ============================================
   SECTIONS
   ============================================ */

.section,
section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

.section-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #34495E;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.alternate {
    background-color: #F8FAFB;
}

/* ============================================
   FLEXBOX GRID LAYOUTS (NO CSS GRID ALLOWED)
   ============================================ */

/* Stats Grid */
.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
    margin-top: 40px;
}

.stat-card {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: #FFFFFF;
    padding: 32px 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
}

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

.stat-card h3 {
    font-size: 48px;
    color: #C4965F;
    margin-bottom: 8px;
}

.stat-card p {
    font-size: 16px;
    color: #2C3E50;
    margin-bottom: 0;
}

/* Pillars Grid */
.pillars-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.pillar-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #C4965F;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.pillar-card h3 {
    color: #1A4D7C;
    margin-bottom: 12px;
}

/* Programs Grid */
.programs-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.program-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.program-card h3 {
    color: #1A4D7C;
    margin-bottom: 8px;
}

.program-card .duration,
.program-card .focus,
.program-card .ideal-for {
    font-size: 14px;
    margin-bottom: 8px;
}

.program-card .duration {
    color: #C4965F;
    font-weight: 600;
}

.program-card .btn {
    margin-top: auto;
    background-color: #1A4D7C;
    color: #FFFFFF;
}

.program-card .btn:hover {
    background-color: #C4965F;
    color: #FFFFFF;
}

/* Methodology Steps */
.methodology-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.step-card {
    flex: 1 1 300px;
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    position: relative;
    padding-top: 100px;
}

.step-number {
    position: absolute;
    top: 20px;
    left: 32px;
    font-size: 48px;
    font-weight: 700;
    color: #E8F1F8;
    font-family: 'Playfair Display', Georgia, serif;
}

.step-card h3 {
    color: #1A4D7C;
    margin-bottom: 12px;
}

/* Testimonials Grid */
.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1 1 100%;
    background-color: #F8FAFB;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #C4965F;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-card .quote {
    font-size: 18px;
    font-style: italic;
    color: #2C3E50;
    line-height: 1.8;
    margin-bottom: 16px;
}

.testimonial-card .author {
    color: #1A4D7C;
    font-weight: 600;
    margin-bottom: 4px;
}

.testimonial-card .title,
.testimonial-card .result {
    font-size: 14px;
    color: #34495E;
    margin-bottom: 4px;
}

/* Advantages Grid */
.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.advantage-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.advantage-card h3 {
    color: #C4965F;
    margin-bottom: 12px;
}

/* ============================================
   CTA SECTIONS
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, #1A4D7C 0%, #2C5F8D 100%);
    color: #FFFFFF;
    padding: 60px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 60px;
}

.cta-section h2 {
    color: #FFFFFF;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 18px;
    color: #E8F1F8;
    margin-bottom: 24px;
}

.cta-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
}

.urgency {
    font-weight: 600;
    color: #C4965F;
    margin-bottom: 24px;
}

.cta-center {
    text-align: center;
    margin-top: 32px;
}

/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

.mission-statement,
.vision-statement {
    background-color: #E8F1F8;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.mission-statement h3,
.vision-statement h3 {
    color: #1A4D7C;
    margin-bottom: 12px;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.value-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.value-card h4 {
    color: #C4965F;
    margin-bottom: 12px;
}

.story-content {
    font-size: 16px;
    line-height: 1.8;
    color: #2C3E50;
    margin-bottom: 32px;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 16px;
    background-color: #F8FAFB;
    border-radius: 8px;
}

.timeline-item .year {
    font-size: 24px;
    font-weight: 700;
    color: #C4965F;
    min-width: 80px;
}

.principles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.principle-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.principle-card h3 {
    color: #1A4D7C;
    margin-bottom: 12px;
}

.metrics-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.metric-card {
    flex: 1 1 calc(33.333% - 24px);
    background-color: #1A4D7C;
    color: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.metric-card h3 {
    font-size: 48px;
    color: #C4965F;
    margin-bottom: 8px;
}

.metric-card p {
    color: #E8F1F8;
    margin-bottom: 0;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.team-member {
    flex: 1 1 calc(33.333% - 24px);
    background-color: #F8FAFB;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.team-member h3 {
    color: #1A4D7C;
    margin-bottom: 8px;
}

.member-title {
    font-weight: 600;
    color: #C4965F;
    margin-bottom: 12px;
}

.credentials {
    font-size: 14px;
    color: #34495E;
}

/* ============================================
   PROGRAMS PAGE STYLES
   ============================================ */

.selection-criteria {
    margin-top: 40px;
}

.criteria-item {
    background-color: #F8FAFB;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.criteria-item h3 {
    color: #1A4D7C;
    margin-bottom: 12px;
}

.criteria-item ul {
    margin-left: 20px;
}

.criteria-item ul li {
    margin-bottom: 8px;
}

.program-detail {
    margin-bottom: 60px;
    padding: 40px 20px;
}

.program-tagline {
    font-size: 20px;
    font-style: italic;
    color: #C4965F;
    margin-bottom: 24px;
}

.program-description {
    margin-bottom: 32px;
}

.program-details {
    background-color: #E8F1F8;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.program-details p {
    margin-bottom: 12px;
}

.curriculum {
    margin-top: 40px;
}

.module {
    background-color: #F8FAFB;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 24px;
}

.module h4 {
    color: #1A4D7C;
    margin-bottom: 12px;
}

.module ul {
    margin-left: 20px;
}

.module ul li {
    margin-bottom: 8px;
}

.learning-outcomes {
    margin-top: 40px;
}

.learning-outcomes ul {
    margin-left: 20px;
}

.learning-outcomes ul li {
    margin-bottom: 8px;
}

.comparison-note {
    background-color: #E8F1F8;
    padding: 24px;
    border-radius: 8px;
    margin-top: 24px;
}

.features-list ul {
    margin-left: 20px;
}

.features-list ul li {
    margin-bottom: 8px;
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.faq-item {
    flex: 1 1 calc(50% - 24px);
    background-color: #F8FAFB;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: #1A4D7C;
    margin-bottom: 12px;
    font-size: 18px;
}

/* ============================================
   COACHES PAGE STYLES
   ============================================ */

.coach-profile {
    margin-bottom: 60px;
    padding: 40px 20px;
}

.coach-title {
    font-size: 20px;
    font-weight: 600;
    color: #C4965F;
    margin-bottom: 8px;
}

.credentials {
    font-size: 14px;
    color: #34495E;
    margin-bottom: 24px;
}

.bio {
    margin-bottom: 32px;
}

.expertise,
.achievements {
    margin-bottom: 32px;
}

.expertise h3,
.achievements h3 {
    color: #1A4D7C;
    margin-bottom: 16px;
}

.expertise ul,
.achievements ul {
    margin-left: 20px;
}

.expertise ul li,
.achievements ul li {
    margin-bottom: 8px;
}

.philosophy-quote {
    background-color: #E8F1F8;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid #C4965F;
    margin-top: 32px;
}

.philosophy-quote p {
    font-size: 18px;
    font-style: italic;
    color: #1A4D7C;
    margin-bottom: 0;
}

.associates-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.associate-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #F8FAFB;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.associate-card h3 {
    color: #1A4D7C;
    margin-bottom: 8px;
}

.specialty {
    font-weight: 600;
    color: #C4965F;
    margin-bottom: 8px;
}

.standards-list {
    margin-left: 20px;
    margin-top: 24px;
}

.standards-list li {
    margin-bottom: 12px;
}

.commitment-statement {
    font-style: italic;
    color: #34495E;
    margin-top: 24px;
}

/* ============================================
   SUCCESS STORIES PAGE STYLES
   ============================================ */

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: #1A4D7C;
    margin-bottom: 8px;
}

.context {
    font-size: 14px;
    color: #34495E;
}

.featured-story,
.success-story {
    margin-bottom: 60px;
    padding: 40px 20px;
}

.story-header {
    margin-bottom: 32px;
}

.label {
    display: inline-block;
    background-color: #C4965F;
    color: #FFFFFF;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
}

.story-title {
    font-size: 20px;
    color: #34495E;
    margin-bottom: 8px;
}

.program {
    font-size: 16px;
    color: #C4965F;
    font-weight: 600;
}

.story-section {
    margin-bottom: 32px;
}

.story-section h3 {
    color: #1A4D7C;
    margin-bottom: 16px;
}

.results-list {
    margin-left: 20px;
}

.results-list li {
    margin-bottom: 12px;
    font-weight: 500;
}

.testimonial-quote {
    background-color: #E8F1F8;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #C4965F;
    margin: 32px 0;
}

.testimonial-quote p {
    font-size: 18px;
    font-style: italic;
    color: #2C3E50;
    line-height: 1.8;
}

.testimonial-quote .author {
    font-style: normal;
    color: #1A4D7C;
    font-weight: 600;
    margin-top: 16px;
}

.current-status {
    background-color: #F8FAFB;
    padding: 24px;
    border-radius: 8px;
    margin-top: 32px;
}

.testimonials-grid-section {
    margin-bottom: 60px;
    padding: 40px 20px;
}

.industries-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.industry-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #F8FAFB;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.industry-card h3 {
    color: #1A4D7C;
    margin-bottom: 8px;
}

.percentage {
    font-weight: 600;
    color: #C4965F;
    margin-bottom: 12px;
}

.outcomes {
    font-size: 14px;
    color: #34495E;
}

.timeline-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.timeline-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
}

.timeline-card h3 {
    color: #C4965F;
    margin-bottom: 12px;
}

/* ============================================
   RESOURCES PAGE STYLES
   ============================================ */

.categories-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.category-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    text-align: center;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.category-card h3 {
    color: #1A4D7C;
    margin-bottom: 12px;
}

.count {
    font-weight: 600;
    color: #C4965F;
    margin-top: 12px;
}

.resources-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.resource-card {
    flex: 1 1 calc(33.333% - 24px);
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.resource-type {
    font-size: 14px;
    font-weight: 600;
    color: #C4965F;
    text-transform: uppercase;
}

.author {
    font-size: 14px;
    color: #34495E;
}

.resource-card .btn {
    margin-top: auto;
    background-color: #1A4D7C;
    color: #FFFFFF;
}

.resource-card .btn:hover {
    background-color: #C4965F;
}

.articles-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.article-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #F8FAFB;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.article-card h3 {
    color: #1A4D7C;
    margin-bottom: 8px;
}

.category {
    font-size: 12px;
    font-weight: 600;
    color: #C4965F;
    text-transform: uppercase;
}

.excerpt {
    font-size: 14px;
    color: #34495E;
    line-height: 1.6;
}

.article-meta {
    display: flex;
    gap: 16px;
    font-size: 12px;
    color: #7F8C8D;
    margin-top: 12px;
}

.read-time,
.date {
    display: inline-block;
}

.guides-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.guide-card {
    flex: 1 1 calc(33.333% - 24px);
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guide-card h3 {
    color: #1A4D7C;
    margin-bottom: 12px;
}

.pages,
.includes,
.format {
    font-size: 14px;
    color: #34495E;
}

.guide-card .btn {
    margin-top: auto;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.tool-card {
    flex: 1 1 calc(33.333% - 24px);
    background-color: #F8FAFB;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tool-card h3 {
    color: #1A4D7C;
    margin-bottom: 12px;
}

.tool-card .btn {
    margin-top: auto;
}

.templates-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 40px;
}

.template-item {
    background-color: #F8FAFB;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #C4965F;
}

.template-item h3 {
    color: #1A4D7C;
    margin-bottom: 8px;
    font-size: 18px;
}

.reading-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.reading-category {
    flex: 1 1 calc(33.333% - 24px);
    background-color: #F8FAFB;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.reading-category h3 {
    color: #1A4D7C;
    margin-bottom: 16px;
}

.reading-category ul {
    margin-left: 20px;
}

.reading-category ul li {
    margin-bottom: 8px;
}

/* ============================================
   CONTACT PAGE STYLES
   ============================================ */

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.method-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.method-card.recommended {
    border: 2px solid #C4965F;
}

.badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #C4965F;
    color: #FFFFFF;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.method-card h3 {
    color: #1A4D7C;
    margin-bottom: 12px;
}

.contact-detail {
    margin-top: 16px;
}

.hours {
    font-size: 14px;
    color: #34495E;
    margin-top: 8px;
}

.location-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 40px;
}

.address,
.directions {
    flex: 1 1 300px;
}

.address h3,
.directions h3 {
    color: #1A4D7C;
    margin-bottom: 16px;
}

.note {
    font-style: italic;
    color: #34495E;
    margin-top: 16px;
}

.hours-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.hours-item {
    flex: 1 1 calc(33.333% - 24px);
    background-color: #F8FAFB;
    padding: 24px;
    border-radius: 8px;
    text-align: center;
    margin-bottom: 20px;
}

.hours-item h3 {
    color: #1A4D7C;
    margin-bottom: 8px;
}

.time {
    font-size: 20px;
    font-weight: 600;
    color: #C4965F;
}

.timezone {
    font-weight: 600;
    margin-top: 24px;
}

.corporate-details {
    background-color: #E8F1F8;
    padding: 24px;
    border-radius: 8px;
    margin: 24px 0;
}

.corporate-services {
    margin-top: 24px;
}

.corporate-services h3 {
    color: #1A4D7C;
    margin-bottom: 16px;
}

.corporate-services ul {
    margin-left: 20px;
}

.corporate-services ul li {
    margin-bottom: 8px;
}

.commitment-list {
    margin-left: 20px;
    margin-top: 24px;
}

.commitment-list li {
    margin-bottom: 12px;
}

.commitment-message {
    font-style: italic;
    color: #34495E;
    margin-top: 24px;
}

/* ============================================
   LEGAL PAGES STYLES
   ============================================ */

.hero-legal {
    padding: 60px 20px;
}

.effective-date {
    font-size: 14px;
    color: #E8F1F8;
    font-style: italic;
}

.legal-content {
    margin-bottom: 60px;
    padding: 40px 20px;
}

.text-section {
    margin-bottom: 40px;
}

.text-section h2 {
    color: #1A4D7C;
    margin-bottom: 16px;
}

.text-section h3 {
    color: #34495E;
    margin-top: 24px;
    margin-bottom: 12px;
}

.text-section ul,
.text-section ol {
    margin-left: 20px;
    margin-top: 12px;
    margin-bottom: 16px;
}

.text-section ul li,
.text-section ol li {
    margin-bottom: 8px;
    line-height: 1.8;
}

/* ============================================
   THANK YOU PAGE STYLES
   ============================================ */

.hero-thankyou {
    padding: 80px 20px;
}

.confirmation-message {
    font-size: 20px;
    color: #E8F1F8;
    margin-bottom: 12px;
}

.confirmation-detail {
    font-size: 16px;
    color: #E8F1F8;
}

.next-steps {
    margin-bottom: 60px;
    padding: 40px 20px;
}

.steps-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.timing {
    font-weight: 600;
    color: #C4965F;
    margin-top: 8px;
}

.suggestions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 40px;
}

.suggestion-card {
    flex: 1 1 calc(50% - 24px);
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suggestion-card h3 {
    color: #1A4D7C;
    margin-bottom: 8px;
}

.suggestion-card .btn {
    margin-top: auto;
}

.urgent-contact {
    background-color: #E8F1F8;
    padding: 40px 20px;
    text-align: center;
    border-radius: 8px;
    margin-bottom: 60px;
}

.contact-details {
    margin-top: 24px;
}

.contact-details p {
    font-size: 16px;
    margin-bottom: 8px;
}

.return-home {
    text-align: center;
    margin-bottom: 60px;
}

/* ============================================
   FOOTER
   ============================================ */

footer {
    background-color: #1A4D7C;
    color: #E8F1F8;
    padding: 60px 20px 24px;
    margin-top: 60px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand,
.footer-nav,
.footer-contact,
.footer-legal {
    flex: 1 1 200px;
}

.footer-brand .tagline {
    font-style: italic;
    color: #C4965F;
    margin-top: 16px;
}

footer h4 {
    color: #FFFFFF;
    font-size: 18px;
    margin-bottom: 16px;
}

footer nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

footer nav a {
    color: #E8F1F8;
    font-size: 14px;
    transition: color 0.3s ease;
}

footer nav a:hover {
    color: #C4965F;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 8px;
}

.footer-contact a {
    color: #E8F1F8;
}

.footer-contact a:hover {
    color: #C4965F;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #E8F1F8;
    margin-bottom: 0;
}

/* ============================================
   COOKIE CONSENT BANNER
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1A4D7C;
    color: #FFFFFF;
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: none;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    display: block;
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-banner-text {
    flex: 1 1 300px;
}

.cookie-banner-text p {
    font-size: 14px;
    margin-bottom: 0;
    line-height: 1.6;
}

.cookie-banner-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-accept,
.cookie-reject,
.cookie-settings {
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #C4965F;
    color: #FFFFFF;
}

.cookie-accept:hover {
    background-color: #B38654;
}

.cookie-reject {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.cookie-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
    background-color: transparent;
    color: #E8F1F8;
    border: 1px solid #E8F1F8;
}

.cookie-settings:hover {
    background-color: rgba(232, 241, 248, 0.1);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-modal.show {
    display: flex;
}

.cookie-modal-content {
    background-color: #FFFFFF;
    border-radius: 8px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    padding: 32px;
    position: relative;
}

.cookie-modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: transparent;
    border: none;
    font-size: 24px;
    color: #2C3E50;
    cursor: pointer;
}

.cookie-modal h2 {
    color: #1A4D7C;
    margin-bottom: 16px;
}

.cookie-category {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #E8F1F8;
}

.cookie-category:last-child {
    border-bottom: none;
}

.cookie-category h3 {
    color: #1A4D7C;
    margin-bottom: 8px;
    font-size: 18px;
}

.cookie-category p {
    font-size: 14px;
    color: #34495E;
    margin-bottom: 12px;
}

.cookie-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cookie-toggle input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-toggle label {
    font-size: 14px;
    font-weight: 600;
    color: #2C3E50;
    cursor: pointer;
}

.cookie-modal-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
    flex-wrap: wrap;
}

.cookie-save-preferences {
    background-color: #1A4D7C;
    color: #FFFFFF;
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-save-preferences:hover {
    background-color: #C4965F;
}

/* ============================================
   RESPONSIVE MEDIA QUERIES
   ============================================ */

@media (max-width: 1024px) {
    h1 {
        font-size: 40px;
    }
    
    h2 {
        font-size: 28px;
    }
    
    .pillar-card,
    .program-card,
    .advantage-card,
    .faq-item,
    .method-card,
    .suggestion-card {
        flex: 1 1 100%;
    }
    
    .metric-card,
    .team-member {
        flex: 1 1 calc(50% - 24px);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 32px;
    }
    
    h2 {
        font-size: 24px;
    }
    
    h3 {
        font-size: 20px;
    }
    
    /* Hide desktop nav, show mobile menu toggle */
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .hero {
        padding: 60px 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        width: 100%;
    }
    
    .stat-card,
    .pillar-card,
    .program-card,
    .advantage-card,
    .value-card,
    .principle-card,
    .metric-card,
    .team-member,
    .category-card,
    .resource-card,
    .article-card,
    .guide-card,
    .tool-card,
    .industry-card,
    .timeline-card,
    .associate-card,
    .faq-item,
    .method-card,
    .hours-item,
    .suggestion-card,
    .reading-category {
        flex: 1 1 100%;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .location-details {
        flex-direction: column;
    }
    
    .cookie-banner-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-banner-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-modal-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    h1 {
        font-size: 28px;
    }
    
    h2 {
        font-size: 22px;
    }
    
    .hero {
        padding: 40px 16px;
    }
    
    .section,
    section {
        padding: 32px 16px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .stat-card h3 {
        font-size: 36px;
    }
    
    .step-number {
        font-size: 36px;
    }
    
    .cookie-banner {
        padding: 16px;
    }
    
    .cookie-banner-buttons {
        flex-direction: column;
    }
    
    .cookie-accept,
    .cookie-reject,
    .cookie-settings {
        width: 100%;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.text-center {
    text-align: center;
}

.mt-40 {
    margin-top: 40px;
}

.mb-40 {
    margin-bottom: 40px;
}

.p-20 {
    padding: 20px;
}

/* ============================================
   ANIMATIONS
   ============================================ */



.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus,
input:focus {
    outline: 2px solid #C4965F;
    outline-offset: 2px;
}

/* ============================================
   PRINT STYLES
   ============================================ */

@media print {
    header,
    .mobile-menu,
    .cookie-banner,
    .cookie-modal,
    .cta-section,
    footer {
        display: none;
    }
    
    body {
        color: #000000;
    }
    
    a {
        color: #000000;
        text-decoration: underline;
    }
}