/* TraccidRag Public Speaking Courses - Main Stylesheet */

/* === CSS Reset and Base Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
    overflow-x: hidden;
}

/* === Typography === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: #555;
}

a {
    color: #4A90E2;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #357abd;
}

/* === Container and Layout === */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

/* === Button Styles === */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.5;
}

.btn-primary {
    background-color: #4A90E2;
    color: white;
}

.btn-primary:hover {
    background-color: #357abd;
    color: white;
}

.btn-secondary {
    background-color: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background-color: #545b62;
    color: white;
}

.btn-outline {
    background-color: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.btn-outline:hover {
    background-color: #4A90E2;
    color: white;
}

.btn-large {
    padding: 16px 32px;
    font-size: 18px;
}

/* === Cookie Banner and Modal === */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: white;
    padding: 20px;
    z-index: 1000;
    border-top: 3px solid #4A90E2;
}

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

.cookie-text h4 {
    color: white;
    margin-bottom: 8px;
}

.cookie-text p {
    color: #ecf0f1;
    margin: 0;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1001;
}

.cookie-modal-content {
    background: white;
    border-radius: 10px;
    padding: 30px;
    max-width: 600px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.close-btn {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #999;
}

.close-btn:hover {
    color: #333;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 5px;
}

.cookie-toggle {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.cookie-toggle input[type="checkbox"] {
    display: none;
}

.toggle-slider {
    width: 50px;
    height: 24px;
    background-color: #ccc;
    border-radius: 12px;
    position: relative;
    transition: 0.3s;
    flex-shrink: 0;
    margin-top: 2px;
}

.toggle-slider:before {
    content: "";
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: white;
    position: absolute;
    top: 2px;
    left: 2px;
    transition: 0.3s;
}

.cookie-toggle input:checked + .toggle-slider {
    background-color: #4A90E2;
}

.cookie-toggle input:checked + .toggle-slider:before {
    transform: translateX(26px);
}

.cookie-toggle input:disabled + .toggle-slider {
    background-color: #4A90E2;
    opacity: 0.7;
}

.cookie-info strong {
    color: #2c3e50;
    font-size: 16px;
}

.cookie-info p {
    margin: 5px 0 0 0;
    color: #666;
    font-size: 14px;
}

.cookie-modal-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid #eee;
    text-align: right;
}

/* === Header and Navigation === */
.header {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
}

.navbar {
    padding: 15px 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
}

.logo-link {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo {
    height: 40px;
    width: auto;
}

.brand-name {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: flex;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
}

.nav-link {
    font-weight: 500;
    color: #555;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #4A90E2;
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #4A90E2;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 3px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

/* === Hero Section === */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    margin-top: 70px;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: white;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* === Page Header === */
.page-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 120px 0 80px;
    margin-top: 70px;
    text-align: center;
    color: white;
}

.page-header-content h1 {
    color: white;
    font-size: 3rem;
    margin-bottom: 20px;
}

.page-header-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.last-updated {
    font-size: 1rem !important;
    color: rgba(255, 255, 255, 0.7) !important;
    margin-top: 10px !important;
}

/* === Section Headers === */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-icon {
    height: 60px;
    width: auto;
    margin-bottom: 20px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

/* === Grid Layouts === */
.goals-grid,
.services-grid,
.features-grid,
.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.team-preview-grid,
.coaches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

/* === Card Styles === */
.goal-card,
.service-card,
.feature-card,
.value-card {
    background: white;
    padding: 40px 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.goal-card:hover,
.service-card:hover,
.feature-card:hover,
.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.goal-icon,
.feature-icon,
.value-icon {
    margin-bottom: 20px;
}

.service-icon {
    margin-bottom: 20px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon-img {
    height: 80px;
    width: auto;
}

.goal-card h3,
.service-card h3,
.feature-card h3,
.value-card h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    padding: 5px 0;
    color: #666;
}

.service-features li:before {
    content: "✓";
    color: #4A90E2;
    font-weight: bold;
    margin-right: 8px;
}

/* === Success Section === */
.success-section {
    background-color: #f8f9fa;
}

.success-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-card {
    text-align: center;
    background: white;
    padding: 40px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #4A90E2;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #2c3e50;
    font-weight: 600;
}

.testimonials {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content p {
    font-style: italic;
    color: #555;
    font-size: 1.1rem;
}

.testimonial-author strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
}

/* === Team Section === */
.team-member-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.team-member-card:hover {
    transform: translateY(-5px);
}

.member-avatar {
    margin-bottom: 20px;
}

.team-member-card h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.member-role {
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 15px;
}

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

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    border-color: white;
    color: white;
}

.cta-buttons .btn-outline:hover {
    background-color: white;
    color: #4A90E2;
}

/* === Footer === */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    color: white;
    margin-bottom: 15px;
}

.footer-brand p {
    color: #bdc3c7;
    margin-bottom: 20px;
}

.footer-logo {
    height: 40px;
    width: auto;
    margin-bottom: 15px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-link {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: #4A90E2;
}

.footer-section h4 {
    color: white;
    margin-bottom: 20px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4A90E2;
}

.contact-info p {
    color: #bdc3c7;
    margin-bottom: 10px;
}

.contact-info strong {
    color: white;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
}

.footer-bottom-content {
    text-align: center;
    color: #bdc3c7;
}

.footer-bottom-content p {
    margin: 5px 0;
}

/* === About Page Specific === */
.our-story-section {
    background-color: #f8f9fa;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 30px;
}

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

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.card-icon {
    margin-bottom: 20px;
}

.values-section {
    background-color: #f8f9fa;
}

.values-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.value-card {
    background: white;
}

.value-icon {
    margin-bottom: 15px;
}

.timeline-section {
    background-color: #f8f9fa;
}

.timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    gap: 30px;
}

.timeline-marker {
    flex-shrink: 0;
    width: 100px;
    text-align: center;
}

.timeline-year {
    background-color: #4A90E2;
    color: white;
    padding: 10px 15px;
    border-radius: 25px;
    font-weight: 600;
}

.timeline-content {
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.timeline-content h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

/* === Services Page Specific === */
.services-overview {
    background-color: #f8f9fa;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.services-grid-detailed {
    display: grid;
    gap: 60px;
    margin-top: 60px;
}

.service-detailed-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
}

.service-icon-large {
    flex-shrink: 0;
}

.service-title-section h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
}

.service-tagline {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    margin: 0;
}

.service-content {
    padding: 40px;
}

.service-features,
.service-benefits {
    margin: 30px 0;
}

.service-features h4,
.service-benefits h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.service-features ul,
.service-benefits ul {
    list-style: none;
}

.service-features li,
.service-benefits li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.service-features li:before,
.service-benefits li:before {
    content: "✓";
    color: #4A90E2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.service-pricing {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-info {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #4A90E2;
}

.price-period {
    color: #666;
    font-size: 1rem;
}

.additional-services {
    background-color: #f8f9fa;
}

.additional-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.additional-service-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.additional-service-card:hover {
    transform: translateY(-5px);
}

.service-price {
    color: #4A90E2;
    font-weight: 600;
    margin-top: 15px;
    display: block;
}

.process-section {
    background-color: #f8f9fa;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
    background: white;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #4A90E2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-content h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.testimonial-card-detailed {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.testimonial-program {
    color: #4A90E2;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 5px;
}

/* === Team Page Specific === */
.team-intro {
    background-color: #f8f9fa;
}

.team-intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.leadership-grid {
    display: grid;
    gap: 60px;
    margin-top: 60px;
}

.team-member-detailed {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
    align-items: start;
}

.member-photo {
    padding: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.member-info {
    padding: 40px 40px 40px 0;
}

.member-info h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.member-credentials {
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 20px;
}

.member-description {
    margin-bottom: 30px;
}

.member-specialties {
    margin-bottom: 30px;
}

.member-specialties h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.member-specialties ul {
    list-style: none;
}

.member-specialties li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.member-specialties li:before {
    content: "•";
    color: #4A90E2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.coach-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease;
}

.coach-card:hover {
    transform: translateY(-5px);
}

.coach-avatar {
    margin-bottom: 20px;
}

.coach-role {
    color: #4A90E2;
    font-weight: 600;
    margin-bottom: 5px;
}

.coach-credentials {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.coach-bio {
    margin-bottom: 20px;
}

.coach-skills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tag {
    background-color: #e3f2fd;
    color: #4A90E2;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.team-values {
    background-color: #f8f9fa;
}

.value-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.value-item h4 {
    margin-bottom: 15px;
    color: #2c3e50;
}

/* === Progress Page Specific === */
.stats-overview {
    background-color: #f8f9fa;
}

.stats-grid-large {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card-large {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.stat-icon {
    margin-bottom: 20px;
}

.stat-description {
    color: #666;
    font-size: 0.9rem;
    margin-top: 10px;
}

.progress-tracking {
    background-color: #f8f9fa;
}

.tracking-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.tracking-method {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.method-icon {
    margin-bottom: 30px;
}

.tracking-method h3 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.method-features {
    list-style: none;
    margin-top: 20px;
}

.method-features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
    text-align: left;
}

.method-features li:before {
    content: "✓";
    color: #4A90E2;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.detailed-success-stories {
    background-color: #f8f9fa;
}

.success-stories-detailed {
    display: grid;
    gap: 60px;
    margin-top: 60px;
}

.story-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.story-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.story-info h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.story-role {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 5px;
}

.story-program {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    margin: 0;
}

.story-content {
    padding: 40px;
}

.story-before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.before-section,
.after-section {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
}

.before-section h4,
.after-section h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.before-section ul,
.after-section ul {
    list-style: none;
}

.before-section li,
.after-section li {
    padding: 5px 0;
    color: #555;
    position: relative;
    padding-left: 20px;
}

.before-section li:before {
    content: "×";
    color: #e74c3c;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.after-section li:before {
    content: "✓";
    color: #27ae60;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.story-card blockquote {
    font-style: italic;
    font-size: 1.1rem;
    color: #555;
    border-left: 4px solid #4A90E2;
    padding-left: 20px;
    margin: 0;
}

.program-outcomes {
    background-color: #f8f9fa;
}

.outcomes-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.outcome-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.outcome-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 30px;
    text-align: center;
}

.outcome-header h3 {
    color: white;
    margin-bottom: 15px;
}

.success-rate {
    background-color: rgba(255, 255, 255, 0.2);
    padding: 8px 15px;
    border-radius: 20px;
    font-weight: 600;
    display: inline-block;
}

.outcome-metrics {
    padding: 30px;
}

.metric {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.metric:last-child {
    border-bottom: none;
}

.metric-label {
    color: #555;
    font-weight: 500;
}

.metric-value {
    color: #4A90E2;
    font-weight: 700;
    font-size: 1.1rem;
}

.progress-timeline {
    background-color: #f8f9fa;
}

.journey-timeline {
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-step {
    display: flex;
    margin-bottom: 40px;
    align-items: flex-start;
    gap: 30px;
}

.step-marker {
    flex-shrink: 0;
    width: 120px;
    text-align: center;
}

.step-week {
    background-color: #4A90E2;
    color: white;
    padding: 12px 20px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
}

.step-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    flex: 1;
}

.step-content h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.expected-outcomes {
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.outcome-tag {
    background-color: #e3f2fd;
    color: #4A90E2;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

/* === Contact Page Specific === */
.contact-section {
    background-color: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    margin-top: 60px;
}

.contact-info-section h2 {
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-details {
    margin: 40px 0;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    flex-shrink: 0;
    margin-top: 5px;
}

.contact-text h4 {
    color: #2c3e50;
    margin-bottom: 8px;
}

.contact-text p {
    margin-bottom: 5px;
    color: #555;
}

.contact-note {
    color: #666;
    font-size: 0.9rem;
}

.social-contact {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-contact h4 {
    color: #2c3e50;
    margin-bottom: 20px;
}

.social-links-large {
    display: grid;
    gap: 15px;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.social-link-large:hover {
    background-color: #e9ecef;
    color: #4A90E2;
}

.contact-form-section {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.form-header p {
    color: #666;
    margin: 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
   
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    font-size: 16px;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
}

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

.checkbox-group {
    margin-bottom: 25px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #e1e5e9;
    border-radius: 4px;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
    transition: all 0.3s ease;
}

.checkbox-label input:checked + .checkmark {
    background-color: #4A90E2;
    border-color: #4A90E2;
}

.checkbox-label input:checked + .checkmark:after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.checkbox-text {
    color: #555;
    line-height: 1.5;
}

.checkbox-text a {
    color: #4A90E2;
}

.faq-section {
    background-color: #f8f9fa;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.faq-item h4 {
    color: #2c3e50;
    margin-bottom: 15px;
}

.faq-item p {
    color: #555;
    margin: 0;
}

/* === Thanks Page Specific === */
.thank-you-section {
    background-color: #f8f9fa;
    text-align: center;
    padding: 100px 0;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    margin-bottom: 30px;
}

.thank-you-content h1 {
    color: #2c3e50;
    font-size: 3rem;
    margin-bottom: 20px;
}

.thank-you-content h2 {
    color: #4A90E2;
    font-size: 2rem;
    margin-bottom: 30px;
}

.thank-you-message {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 60px;
    line-height: 1.6;
}

.next-steps {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.next-steps h3 {
    color: #2c3e50;
    margin-bottom: 30px;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

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

.step-item .step-number {
    width: 50px;
    height: 50px;
    background-color: #4A90E2;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 15px;
}

.step-item h4 {
    color: #2c3e50;
    margin-bottom: 10px;
}

.step-item p {
    color: #666;
    font-size: 0.9rem;
    margin: 0;
}

.response-time {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.response-info {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.response-info strong {
    color: #2c3e50;
    display: block;
    margin-bottom: 5px;
}

.response-info p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
}

.thank-you-actions {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.thank-you-actions h3 {
    color: #2c3e50;
    margin-bottom: 30px;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.urgent-contact {
    background: #fff3e0;
    padding: 30px;
    border-radius: 10px;
    border: 2px solid #ffb74d;
}

.urgent-contact h4 {
    color: #e65100;
    margin-bottom: 15px;
}

.urgent-contact p {
    color: #bf360c;
    margin-bottom: 15px;
}

.phone-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e65100;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
}

.phone-link:hover {
    color: #bf360c;
}

/* === Legal Pages Specific === */
.legal-content {
    background-color: #f8f9fa;
}

.legal-document {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.document-nav {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    height: fit-content;
    position: sticky;
    top: 100px;
}

.document-nav h3 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.2rem;
}

.document-nav ul {
    list-style: none;
}

.document-nav li {
    margin-bottom: 10px;
}

.document-nav a {
    color: #555;
    font-size: 0.9rem;
    padding: 8px 0;
    display: block;
    border-radius: 5px;
    transition: color 0.3s ease;
}

.document-nav a:hover {
    color: #4A90E2;
}

.document-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.content-section {
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.content-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.content-section h2 {
    color: #2c3e50;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.content-section h3 {
    color: #2c3e50;
    margin: 25px 0 15px 0;
    font-size: 1.3rem;
}

.content-section h4 {
    color: #2c3e50;
    margin: 20px 0 10px 0;
    font-size: 1.1rem;
}

.content-section ul {
    margin: 15px 0;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 8px;
    color: #555;
    line-height: 1.6;
}

.cookie-category-detail {
    background: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
}

.cookie-management-buttons {
    margin: 20px 0;
}

.contact-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 20px 0;
}

.contact-details p {
    margin-bottom: 10px;
    color: #555;
}

.contact-details strong {
    color: #2c3e50;
}

/* === Responsive Design === */
@media (max-width: 1024px) {
    .legal-document {
        grid-template-columns: 200px 1fr;
        gap: 30px;
    }
    
    .document-nav {
        top: 90px;
    }
}

@media (max-width: 768px) {
    /* Typography adjustments */
    h1 { font-size: 2rem; }
    h2 { font-size: 1.5rem; }
    .hero-title { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
    
    /* Layout adjustments */
    .section { padding: 60px 0; }
    
    /* Navigation */
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
        flex-direction: column;
        padding: 20px;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    /* Cookie banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .cookie-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    /* Hero section */
    .hero-buttons {
        gap: 15px;
    }
    
    .btn-large {
        padding: 14px 24px;
        font-size: 16px;
    }
    
    /* Grid layouts */
    .goals-grid,
    .services-grid,
    .features-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .team-preview-grid,
    .coaches-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .stats-grid-large {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }
    
    /* About page */
    .story-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-item {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    /* Services page */
    .service-header {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .service-pricing {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    /* Team page */
    .team-member-detailed {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .member-info {
        padding: 40px;
    }
    
    /* Progress page */
    .story-before-after {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .outcomes-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .timeline-step {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    /* Contact page */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .social-links-large {
        grid-template-columns: 1fr;
    }
    
    /* Legal pages */
    .legal-document {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .document-nav {
        position: static;
        order: 2;
    }
    
    .document-content {
        order: 1;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    /* Further mobile adjustments */
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .cookie-modal-content {
        padding: 20px;
        margin: 20px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 12px 24px;
        font-size: 16px;
    }
    
    .cta-buttons,
    .hero-buttons,
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .card,
    .service-card,
    .goal-card,
    .feature-card {
        padding: 25px 20px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }
    
    .stats-grid-large {
        grid-template-columns: 1fr;
    }
}

/* === Accessibility === */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus styles for accessibility */
.btn:focus,
.nav-link:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #4A90E2;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-outline {
        border-width: 3px;
    }
    
    .nav-link.active::after {
        height: 3px;
    }
}

/* === Print Styles === */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .nav-toggle,
    .btn,
    .social-links {
        display: none !important;
    }
    
    .hero {
        margin-top: 0;
        min-height: auto;
        padding: 40px 0;
    }
    
    .page-header {
        margin-top: 0;
        padding: 40px 0;
    }
    
    .section {
        padding: 30px 0;
    }
    
    * {
        color: #000 !important;
        background: #fff !important;
    }
}
