/* CruciRiver Public Speaking Courses - Modern CSS Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #ffffff;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

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

a {
    color: #8f48db;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #48a8db;
}

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

.section {
    padding: 4rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    color: #8f48db;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* Button Styles */
.btn-primary, .btn-secondary, .btn-outline, .btn-hero {
    display: inline-block;
    padding: 1rem 2rem;
    font-family: 'Oswald', Arial, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1rem;
    line-height: 1;
}

.btn-primary {
    background: linear-gradient(135deg, #8f48db, #48a8db);
    color: white !important;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #7a3bb8, #3d8fb8);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(143, 72, 219, 0.3);
}

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

.btn-secondary:hover {
    background-color: #545b62;
    transform: translateY(-2px);
}

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

.btn-outline:hover {
    background-color: #8f48db;
    color: white;
    transform: translateY(-2px);
}

.btn-hero {
    background: linear-gradient(135deg, #8f48db, #48a8db);
    color: white !important;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

.btn-hero:hover {
    background: linear-gradient(135deg, #7a3bb8, #3d8fb8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(143, 72, 219, 0.4);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Navigation */
.navbar {
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-family: 'Oswald', Arial, sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #8f48db;
    text-decoration: none;
}

.nav-logo img {
    width: 40px;
    height: 40px;
    margin-right: 0.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #8f48db;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: linear-gradient(135deg, #8f48db, #48a8db);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

/* Mobile Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

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

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

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

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

/* Hero Section */
.hero {
    height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, rgba(143, 72, 219, 0.9), rgba(72, 168, 219, 0.9));
    color: white;
    text-align: center;
    overflow: hidden;
    padding-top: 50px;
}

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

.hero-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.hero-content {
    max-width: 800px;
    z-index: 1;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #8f48db, #48a8db);
    color: white;
    text-align: center;
    padding: 8rem 0 4rem;
}

.page-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Grid Layouts */
.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.content-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.advantages-grid,
.achievements-grid,
.reviews-grid,
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.tips-grid,
.exercises-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

/* Cards and Items */
.advantage-item,
.review-item,
.faq-item,
.tip-card,
.exercise-card {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-item:hover,
.tip-card:hover,
.exercise-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.tip-icon,
.exercise-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
}

/* Statistics */
.content-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

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

.stat-number,
.achievement-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #8f48db;
    font-family: 'Oswald', Arial, sans-serif;
}

.stat-label,
.achievement-label {
    color: #666;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Course Sections */
.course-highlight,
.discount-section {
    background: linear-gradient(135deg, rgba(143, 72, 219, 0.05), rgba(72, 168, 219, 0.05));
}

.course-card,
.discount-card {
    background: white;
    border-radius: 15px;
    padding: 3rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-align: center;
    margin: 0 auto;
    max-width: 600px;
}

.course-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 1.5rem 0;
}

.course-duration,
.course-price {
    background: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    color: #8f48db;
}

.course-features {
    list-style: none;
    text-align: left;
    margin: 2rem 0;
}

.course-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.course-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #48a8db;
    font-weight: bold;
}

/* Discount Section */
.discount-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: hue-rotate(270deg);
}

.discount-text {
    font-size: 1.3rem;
    color: #8f48db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.next-launch {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.discount-price {
    margin: 2rem 0;
}

.old-price {
    text-decoration: line-through;
    color: #999;
    margin-right: 1rem;
    font-size: 1.2rem;
}

.new-price {
    font-size: 2rem;
    font-weight: 700;
    color: #8f48db;
    font-family: 'Oswald', Arial, sans-serif;
}

/* Courses Page */
.course-categories {
    margin-bottom: 4rem;
}

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

.category-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #8f48db;
}

.featured-course {
    background: linear-gradient(135deg, rgba(143, 72, 219, 0.1), rgba(72, 168, 219, 0.1));
    position: relative;
    margin-bottom: 4rem;
    padding-top: 6rem !important;
}

.featured-badge {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, #8f48db, #48a8db);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
}

.course-hero {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.course-hero-content h2 {
    font-size: 2.5rem;
    color: #8f48db;
    margin-bottom: 1rem;
}

.course-subtitle {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
}

.course-highlights {
    display: flex;
    gap: 2rem;
    margin: 2rem 0;
}

.highlight {
    text-align: center;
}

.highlight strong {
    display: block;
    font-size: 1.5rem;
    color: #8f48db;
    font-family: 'Oswald', Arial, sans-serif;
}

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

.courses-catalog {
    background: #f8f9fa;
}

.course-category {
    margin-bottom: 4rem;
}

.category-title {
    color: #8f48db;
    margin-bottom: 2rem;
    font-size: 2rem;
    text-align: center;
}

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

.course-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.course-card.popular {
    border: 3px solid #8f48db;
}

.popular-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #8f48db, #48a8db);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 1;
}

.course-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.course-content {
    padding: 2rem;
}

.course-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 10px;
}

.duration {
    color: #666;
    font-weight: 500;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8f48db;
    font-family: 'Oswald', Arial, sans-serif;
}

.special-price .old-price {
    display: block;
    font-size: 1rem;
    text-decoration: line-through;
    color: #999;
}

/* Forms */
.newsletter-section,
.enrollment-section,
.contact-form-section {
    background: linear-gradient(135deg, rgba(143, 72, 219, 0.05), rgba(72, 168, 219, 0.05));
}

.newsletter-content,
.enrollment-content,
.form-container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

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

.form-header {
    margin-bottom: 2rem;
}

.newsletter-form,
.enrollment-form,
.contact-form,
.challenge-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid #e9ecef;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}
.form-group input[type="checkbox"] {
    width: auto;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #8f48db;
    box-shadow: 0 0 0 3px rgba(143, 72, 219, 0.1);
}

.radio-group {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.radio-label,
.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-group {
    text-align: left;
}

/* Contact Information */
.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.contact-method {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.contact-method-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: hue-rotate(270deg);
}

.contact-detail {
    font-size: 1.3rem;
    font-weight: 600;
    color: #8f48db;
    margin-bottom: 0.5rem;
}

.contact-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.contact-hours h4 {
    color: #8f48db;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-hours p {
    margin-bottom: 0.3rem;
    font-size: 0.9rem;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

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

.contact-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    filter: hue-rotate(270deg);
}

/* Tips and Exercises */
.exercise-category {
    margin-bottom: 4rem;
}

.exercise-steps {
    text-align: left;
}

.exercise-steps ol {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.exercise-steps li {
    margin-bottom: 0.5rem;
}

/* Challenge Section */
.challenge-section {
    background: linear-gradient(135deg, rgba(143, 72, 219, 0.05), rgba(72, 168, 219, 0.05));
}

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

.challenge-intro {
    text-align: center;
    margin-bottom: 3rem;
}

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

.week-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.week-card h3 {
    color: #8f48db;
    margin-bottom: 1rem;
    text-align: center;
}

.challenge-days {
    list-style: none;
}

.challenge-days li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.challenge-days li:last-child {
    border-bottom: none;
}

.challenge-cta {
    text-align: center;
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Resources Section */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.resource-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.resource-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    filter: hue-rotate(270deg);
}

.resource-card ul {
    list-style: none;
    text-align: left;
    margin: 1rem 0;
}

.resource-card li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.resource-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #8f48db;
    font-weight: bold;
}

/* About Page */
.mission-section {
    background: #f8f9fa;
}

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

.value-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    border-top: 4px solid #8f48db;
}

.team-section {
    background: linear-gradient(135deg, rgba(143, 72, 219, 0.05), rgba(72, 168, 219, 0.05));
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.team-member {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
}

.team-photo {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.member-info {
    padding: 2rem;
}

.member-title {
    color: #8f48db;
    font-weight: 600;
    margin-bottom: 1rem;
}

.member-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.member-credentials span {
    background: #f8f9fa;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #666;
}

.methodology-section {
    background: #f8f9fa;
}

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

.methodology-step {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    text-align: center;
    position: relative;
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #8f48db, #48a8db);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Oswald', Arial, sans-serif;
}

.cta-section {
    background: linear-gradient(135deg, #8f48db, #48a8db);
    color: white;
    text-align: center;
}

.cta-content h2 {
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    color: white;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Legal Pages */
.legal-page {
    padding: 8rem 0 4rem;
    margin-top: 70px;
}

.legal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.legal-updated {
    color: #666;
    font-style: italic;
}

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

.legal-section {
    margin-bottom: 3rem;
}

.legal-section h2 {
    color: #8f48db;
    border-bottom: 2px solid #8f48db;
    padding-bottom: 0.5rem;
    margin-bottom: 1.5rem;
}

.legal-section h3 {
    color: #48a8db;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-section li {
    margin-bottom: 0.5rem;
}

.contact-details {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
    margin: 1rem 0;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid #e9ecef;
}

.cookie-table th {
    background: #8f48db;
    color: white;
    font-weight: 600;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

/* Thank You Page */
.thank-you-section {
    padding: 8rem 0 4rem;
    margin-top: 70px;
    text-align: center;
}

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

.thank-you-icon {
    margin-bottom: 2rem;
}

.success-icon {
    width: 100px;
    height: 100px;
    filter: hue-rotate(270deg);
}

.thank-you-content h1 {
    color: #8f48db;
    margin-bottom: 2rem;
}

.what-happens-next {
    margin: 3rem 0;
    text-align: left;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 30px;
    height: 30px;
    background: linear-gradient(135deg, #8f48db, #48a8db);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-family: 'Oswald', Arial, sans-serif;
    flex-shrink: 0;
}

.step-content h3 {
    color: #8f48db;
    margin-bottom: 0.5rem;
}

.contact-reminder {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.contact-options {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.contact-option {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: white;
    border-radius: 25px;
    text-decoration: none;
    color: #8f48db;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.contact-option:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.contact-option img {
    width: 20px;
    height: 20px;
}

.action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.while-you-wait {
    background: #f8f9fa;
}

.faq-quick {
    margin-top: 0;
}

/* Location Section */
.location-section {
    background: #f8f9fa;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.location-details {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
}

.location-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    filter: hue-rotate(270deg);
}

.location-info h4 {
    color: #8f48db;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.location-info ul {
    list-style: none;
    padding: 0;
}

.location-info li {
    padding: 0.3rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.location-info li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: #8f48db;
    font-weight: bold;
}

.location-map {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

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

.map-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    filter: hue-rotate(270deg);
}

.social-contact-section {
    background: linear-gradient(135deg, rgba(143, 72, 219, 0.05), rgba(72, 168, 219, 0.05));
}

.social-contact-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.social-links-expanded {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.social-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: white;
    border-radius: 10px;
    text-decoration: none;
    color: #333;
    transition: transform 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.additional-contact {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    margin-top: 3rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

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

.contact-option {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 10px;
}

.contact-option h4 {
    color: #8f48db;
    margin-bottom: 0.5rem;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.9);
    color: white;
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner p {
    color: white;
    margin-bottom: 0;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-banner .btn-primary,
.cookie-banner .btn-secondary,
.cookie-banner .btn-outline {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

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

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

.cookie-modal-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-option {
    margin: 1rem 0;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 5px;
}

.cookie-option label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    margin-top: 0.2rem;
}

.cookie-option span {
    font-size: 0.9rem;
    color: #666;
}

.modal-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    justify-content: flex-end;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: white;
    padding: 3rem 0 1rem;
}

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

.footer-section h3 {
    color: #8f48db;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #48a8db;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #bdc3c7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #8f48db;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: scale(1.2);
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 1rem;
    text-align: center;
    color: #bdc3c7;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    /* Typography */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

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

    .page-header h1 {
        font-size: 2.5rem;
    }

    /* Grids */
    .content-grid,
    .content-split,
    .course-hero,
    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .advantages-grid,
    .achievements-grid,
    .reviews-grid,
    .faq-grid,
    .tips-grid,
    .exercises-grid,
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-highlights {
        flex-direction: column;
        gap: 1rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }

    .cta-buttons,
    .action-buttons {
        flex-direction: column;
        align-items: center;
    }

    .contact-options {
        grid-template-columns: 1fr;
    }

    .next-steps {
        gap: 1rem;
    }

    .step {
        flex-direction: column;
        text-align: center;
    }

    .challenge-weeks {
        grid-template-columns: 1fr;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .section {
        padding: 2rem 0;
    }

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

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header {
        padding: 6rem 0 3rem;
    }

    .btn-primary,
    .btn-secondary,
    .btn-outline,
    .btn-hero {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

    .course-card,
    .discount-card,
    .form-container {
        padding: 1.5rem;
    }

    .cookie-modal-content {
        padding: 1.5rem;
    }

    .thank-you-section {
        padding: 6rem 0 2rem;
    }

    .legal-page {
        padding: 6rem 0 2rem;
    }
    .cookie-table {
        display: none;
    }
}

/* Utility Classes */
.text-center {
    text-align: center;
}

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

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

.mb-0 {
    margin-bottom: 0;
}

.mb-1 {
    margin-bottom: 1rem;
}

.mb-2 {
    margin-bottom: 2rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mt-0 {
    margin-top: 0;
}

.mt-1 {
    margin-top: 1rem;
}

.mt-2 {
    margin-top: 2rem;
}

.mt-3 {
    margin-top: 3rem;
}

/* Animation and Transitions */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
    100% {
        transform: scale(1);
    }
}

.pulse {
    animation: pulse 2s infinite;
}

/* Print Styles */
@media print {
    .navbar,
    .cookie-banner,
    .cookie-modal,
    .footer {
        display: none;
    }

    .page-header {
        margin-top: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }

    .legal-section {
        page-break-inside: avoid;
    }
}
footer p {
    color: white;
}