/* Base Variables and Reset */
:root {
    /* Tetrad Color Scheme */
    --primary-color: #FF5E5B; /* Coral Red */
    --secondary-color: #5B8CFF; /* Bright Blue */
    --tertiary-color: #A85BFF; /* Purple */
    --quaternary-color: #5BFF8C; /* Green */
    
    /* Variations for hover states and accents */
    --primary-dark: #D94A47;
    --secondary-dark: #4A70CC;
    --tertiary-dark: #8A49D1;
    --quaternary-dark: #49CC70;
    
    /* Neutrals */
    --dark: #333333;
    --darker: #222222;
    --light: #F9F9F9;
    --lighter: #FFFFFF;
    --mid-gray: #888888;
    --light-gray: #E0E0E0;
    
    /* Gradients */
    --primary-gradient: linear-gradient(135deg, var(--primary-color), var(--tertiary-color));
    --secondary-gradient: linear-gradient(135deg, var(--secondary-color), var(--quaternary-color));
    --dark-overlay: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3));
    --light-overlay: linear-gradient(to bottom, rgba(255,255,255,0.9), rgba(255,255,255,0.7));
    
    /* Typography */
    --heading-font: 'Raleway', sans-serif;
    --body-font: 'Open Sans', sans-serif;
    
    /* Dimensions */
    --header-height: 80px;
    --container-width: 1200px;
    --card-border-radius: 8px;
    
    /* Effects */
    --box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    --box-shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.15);
    --transition-fast: all 0.3s ease;
    --transition-medium: all 0.5s ease;
    --transition-slow: all 0.8s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--heading-font);
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--darker);
}

p {
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

a {
    text-decoration: none;
    color: var(--secondary-color);
    transition: var(--transition-fast);
}

a:hover {
    color: var(--secondary-dark);
}

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

ul, ol {
    list-style: none;
}

/* Utility Classes */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.5rem;
}

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

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

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

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

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

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

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

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

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

.py-1 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-2 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-3 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-4 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-5 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.px-1 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-2 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-3 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--dark-overlay);
    z-index: 1;
}

/* Buttons */
.btn, 
button, 
input[type="submit"] {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    font-family: var(--heading-font);
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
    font-size: 1rem;
    box-shadow: var(--box-shadow);
}

.btn:hover, 
button:hover, 
input[type="submit"]:hover {
    transform: translateY(-3px);
    box-shadow: var(--box-shadow-hover);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--lighter);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    color: var(--lighter);
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--lighter);
}

.btn-secondary:hover {
    background-color: var(--secondary-dark);
    color: var(--lighter);
}

.btn-tertiary {
    background-color: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-tertiary:hover {
    background-color: var(--primary-color);
    color: var(--lighter);
}

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

.fade-in-up {
    animation: fadeInUp 1s ease-in-out;
}

.slide-in-left {
    animation: slideInLeft 1s ease-in-out;
}

.slide-in-right {
    animation: slideInRight 1s ease-in-out;
}

/* Section Styles */
.section-title {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    z-index: 2;
}

.section-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    font-size: 1.1rem;
    color: var(--mid-gray);
    line-height: 1.8;
    position: relative;
    z-index: 2;
}

section {
    padding: 5rem 0;
    position: relative;
    overflow: hidden;
}

/* Header */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    backdrop-filter: blur(10px);
    transition: var(--transition-fast);
}

.main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--header-height);
}

.logo a {
    font-family: var(--heading-font);
    font-weight: 700;
    font-size: 1.8rem;
    color: var(--primary-color);
    text-decoration: none;
}

.logo a h1 {
    margin: 0;
    font-size: 1.8rem;
}

.main-nav ul {
    display: flex;
    gap: 1.5rem;
}

.main-nav a {
    color: var(--dark);
    font-weight: 600;
    padding: 0.5rem 0;
    position: relative;
}

.main-nav a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

.main-nav a:hover {
    color: var(--primary-color);
}

.main-nav a:hover::after {
    width: 100%;
}

.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger-menu span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: var(--primary-color);
    transition: var(--transition-fast);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--lighter);
    margin-top: var(--header-height);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

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

.hero p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--lighter);
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

/* Features Section */
.features {
    background-color: var(--light);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/texture-pattern.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

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

.feature-card {
    background: var(--lighter);
    border-radius: var(--card-border-radius);
    padding: 2rem;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.feature-icon {
    margin-bottom: 1.5rem;
}

.icon-container {
    width: 80px;
    height: 80px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    overflow: hidden;
}

.icon-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.feature-card p {
    color: var(--mid-gray);
    margin-bottom: 1.5rem;
}

.progress-container {
    width: 100%;
    margin-bottom: 1.5rem;
}

.progress-bar {
    height: 6px;
    background: var(--primary-gradient);
    border-radius: 3px;
    width: 0;
    transition: width 1.5s ease-in-out;
}

.progress-text {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

/* Vision Section */
.vision {
    background-color: var(--dark);
    color: var(--lighter);
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.vision-content {
    position: relative;
    z-index: 2;
    max-width: 1000px;
    margin: 0 auto;
}

.vision .section-title {
    color: var(--lighter);
}

.vision-text {
    margin-bottom: 3rem;
}

.vision-text p {
    color: var(--light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.vision-stats {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

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

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.stat-text {
    font-size: 1.1rem;
    color: var(--light);
}

/* Instructors Section */
.instructors {
    background-color: var(--light);
}

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

.instructor-card {
    background: var(--lighter);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--box-shadow-hover);
}

.card-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-medium);
}

.instructor-card:hover .card-image img {
    transform: scale(1.05);
}

.card-content {
    padding: 1.5rem;
    text-align: center;
}

.instructor-card h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.instructor-title {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.instructor-bio {
    color: var(--mid-gray);
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-link {
    color: var(--secondary-color);
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.social-link:hover {
    color: var(--secondary-dark);
}

/* Resources Section */
.resources {
    background-color: var(--light);
    position: relative;
}

.resources::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('image/texture-light.jpg');
    background-size: cover;
    background-position: center;
    opacity: 0.05;
    pointer-events: none;
}

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

.resource-card {
    background: var(--lighter);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.resource-card .card-image {
    width: 100%;
    height: 200px;
}

.resource-card .card-content {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
}

.resource-card p {
    color: var(--mid-gray);
    margin-bottom: 1.2rem;
    flex: 1;
}

.resource-link {
    display: inline-block;
    color: var(--secondary-color);
    font-weight: 600;
    margin-top: auto;
    position: relative;
    padding-bottom: 2px;
}

.resource-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 2px;
    background-color: var(--secondary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.resource-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

/* Events Section */
.events {
    background-color: var(--light);
}

.events-container {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.event-card {
    display: flex;
    background: var(--lighter);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: var(--transition-medium);
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--box-shadow-hover);
}

.event-date {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    min-width: 120px;
    background: var(--primary-gradient);
    color: var(--lighter);
    text-align: center;
}

.event-date .day {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 1.2rem;
    text-transform: uppercase;
}

.event-details {
    padding: 2rem;
    flex: 1;
}

.event-details h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}

.event-meta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
    color: var(--mid-gray);
    font-size: 0.9rem;
}

.event-description {
    color: var(--mid-gray);
    margin-bottom: 1.5rem;
}

/* Events Calendar Section */
.events-calendar {
    background-color: var(--light);
}

.calendar-container {
    background: var(--lighter);
    border-radius: var(--card-border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
}

.calendar-header {
    padding: 1.5rem;
    background: var(--secondary-gradient);
    color: var(--lighter);
}

.month-selector {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.current-month {
    font-size: 1.5rem;
    margin: 0;
}

.prev-month, .next-month {
    background: transparent;
    border: 1px solid var(--lighter);
    color: var(--lighter);
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.prev-month:hover, .next-month:hover {
    background: rgba(255, 255, 255, 0.2);
}

.calendar-grid {
    padding: 1.5rem;
}

.weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    text-align: center;
    font-weight: 600;
    margin-bottom: 1rem;
}

.days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.day {
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.day:hover {
    background-color: var(--light-gray);
}

.day.empty {
    cursor: default;
}

.day.event-day {
    background-color: var(--primary-color);
    color: var(--lighter);
    font-weight: 600;
}

.event-details-panel {
    padding: 1.5rem;
    border-top: 1px solid var(--light-gray);
}

.event-details-panel h3 {
    margin-bottom: 1.5rem;
    font-size: 1.3rem;
}

.upcoming-events {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.upcoming-event {
    display: flex;
    align-items: center;
    padding: 1rem;
    border-radius: 4px;
    background-color: var(--light);
    transition: var(--transition-fast);
}

.upcoming-event:hover {
    background-color: var(--light-gray);
}

.event-date {
    font-weight: 600;
    margin-right: 1rem;
    min-width: 80px;
}

.event-title {
    flex: 1;
}

.event-link {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Careers Section */
.careers {
    background-color: var(--dark);
    color: var(--lighter);
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.careers .section-title {
    color: var(--lighter);
}

.careers .section-description {
    color: var(--light);
}

.careers-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 2;
}

.career-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--card-border-radius);
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.career-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.career-card h3 {
    color: var(--lighter);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.career-location {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.career-description {
    color: var(--light);
    margin-bottom: 1.5rem;
}

/* Contact Section */
.contact {
    background-color: var(--light);
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.info-item .icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    min-width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 94, 91, 0.1);
    border-radius: 50%;
}

.info-item .text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
}

.info-item .text p {
    color: var(--mid-gray);
    margin-bottom: 0.5rem;
}

.contact-form {
    background: var(--lighter);
    padding: 2.5rem;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--light-gray);
    border-radius: 4px;
    font-family: var(--body-font);
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 2px rgba(91, 140, 255, 0.2);
}

/* Footer */
.main-footer {
    background-color: var(--dark);
    color: var(--light);
    padding: 5rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo h2 {
    color: var(--lighter);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--light-gray);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.link-column h3 {
    color: var(--lighter);
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    position: relative;
}

.link-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background-color: var(--primary-color);
}

.link-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.link-column a {
    color: var(--light-gray);
    transition: var(--transition-fast);
}

.link-column a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-newsletter h3 {
    color: var(--lighter);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-newsletter p {
    color: var(--light-gray);
    margin-bottom: 1.5rem;
}

.newsletter-form {
    display: flex;
    gap: 0.5rem;
}

.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1rem;
    border: none;
    border-radius: 4px;
    font-family: var(--body-font);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    margin: 0;
    color: var(--light-gray);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
}

.footer-social a {
    color: var(--light-gray);
    transition: var(--transition-fast);
}

.footer-social a:hover {
    color: var(--primary-color);
}

/* Cookie Consent Styles */
.cookie-popup {
    font-family: var(--body-font);
}

#accept-cookies {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 8px 15px;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition-fast);
}

#accept-cookies:hover {
    background-color: var(--primary-dark);
}

/* Success Page */
.success-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    margin-top: var(--header-height);
}

.success-content {
    max-width: 600px;
    background: var(--lighter);
    padding: 3rem;
    border-radius: var(--card-border-radius);
    box-shadow: var(--box-shadow);
}

.success-icon {
    font-size: 4rem;
    color: var(--quaternary-color);
    margin-bottom: 1.5rem;
}

.success-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.success-content p {
    color: var(--mid-gray);
    margin-bottom: 2rem;
}

/* Privacy and Terms Pages */
.page-content {
    margin-top: var(--header-height);
    padding-top: 100px;
    padding-bottom: 5rem;
}

.page-content .container {
    max-width: 800px;
}

.page-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

.page-content h2 {
    font-size: 1.8rem;
    margin: 2.5rem 0 1.5rem;
}

.page-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    list-style: disc;
}

.page-content ul li {
    margin-bottom: 0.8rem;
}

/* Media Queries */
@media (max-width: 1200px) {
    .container {
        max-width: 95%;
    }
    
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-logo {
        grid-column: 1 / -1;
    }
}

@media (max-width: 992px) {
    :root {
        --header-height: 70px;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .event-card {
        flex-direction: column;
    }
    
    .event-date {
        width: 100%;
        padding: 1rem;
        flex-direction: row;
        justify-content: center;
        gap: 0.5rem;
    }
    
    .event-date .day {
        font-size: 1.8rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background-color: var(--lighter);
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        padding: 7rem 2rem 2rem;
        transition: var(--transition-medium);
        z-index: 1000;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        gap: 2rem;
    }
    
    .hamburger-menu {
        display: flex;
    }
    
    .hamburger-menu.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }
    
    .hamburger-menu.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger-menu.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .vision-stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form .btn {
        width: 100%;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .features-container,
    .instructors-container,
    .resources-container,
    .careers-container {
        grid-template-columns: 1fr;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .calendar-grid {
        overflow-x: auto;
    }
}