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

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

body {
    font-family: 'Oswald', sans-serif;
    line-height: 1.6;
    color: #e4e6ea;
    background-color: #1a1d21;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    color: #ffffff;
    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: #b8bcc8;
}

a {
    color: #0099ff;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #66c2ff;
}

ul {
    list-style: none;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    font-size: 1rem;
    text-align: center;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: none;
}

.btn-primary {
    background-color: #0099ff;
    color: #ffffff;
    border-color: #0099ff;
}

.btn-primary:hover {
    background-color: #007acc;
    border-color: #007acc;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: #36393f;
    color: #e4e6ea;
    border-color: #36393f;
}

.btn-secondary:hover {
    background-color: #40444b;
    border-color: #40444b;
    color: #ffffff;
}

.btn-outline {
    background-color: transparent;
    color: #0099ff;
    border-color: #0099ff;
}

.btn-outline:hover {
    background-color: #0099ff;
    color: #ffffff;
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background-color: #1a1d21;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

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

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0099ff;
    text-decoration: none;
}

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

.nav-link {
    color: #e4e6ea;
    font-weight: 400;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: #0099ff;
}

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

.nav-toggle .bar {
    width: 25px;
    height: 3px;
    background-color: #e4e6ea;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #1a1d21 0%, #2c2f36 100%);
    overflow: hidden;
}

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

.hero-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #0099ff 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #b8bcc8;
}

/* Sections */
.section {
    padding: 5rem 0;
    position: relative;
}

.section:nth-child(even) {
    background-color: #2c2f36;
}

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

.section-header img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #b8bcc8;
}

/* Page Header */
.page-header {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #1a1d21 0%, #2c2f36 100%);
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.3rem;
    color: #b8bcc8;
}

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

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

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

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

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

/* Cards */
.advantage-card,
.review-card {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.advantage-card:hover,
.review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.15);
}

.advantage-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.advantage-card h3 {
    margin-bottom: 1rem;
    color: #0099ff;
}

/* Course Highlight */
.course-highlight {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    background-color: #36393f;
    padding: 3rem;
    border-radius: 15px;
    margin-top: 2rem;
}

.course-content h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

.course-content ul {
    margin: 1.5rem 0;
}

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

.course-content li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0099ff;
    font-weight: bold;
}

.course-details {
    margin: 2rem 0;
}

.course-price {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}

.old-price {
    text-decoration: line-through;
    color: #72767d;
}

.new-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #0099ff;
}

.discount {
    background-color: #ff4757;
    color: white;
    padding: 0.2rem 0.5rem;
    border-radius: 5px;
    font-size: 0.8rem;
}

.course-date {
    margin-bottom: 1rem;
}

.course-image img {
    width: 100%;
    max-width: 200px;
    height: auto;
    opacity: 0.7;
}

/* Achievements Counter */
.achievement-item {
    text-align: center;
    padding: 2rem;
    background-color: #36393f;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
}

.achievement-number {
    font-size: 3rem;
    font-weight: bold;
    color: #0099ff;
    margin-bottom: 0.5rem;
}

.achievement-label {
    font-size: 1.1rem;
    color: #b8bcc8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Reviews */
.review-stars {
    color: #ffa500;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.review-author {
    margin-top: 1rem;
    font-style: italic;
    color: #0099ff;
}

/* Contact */
.contact-item h3 {
    color: #0099ff;
    margin-bottom: 0.5rem;
}

.contact-cta {
    text-align: center;
    margin-top: 3rem;
}

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

.category-card {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.category-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.category-card h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

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

.course-card {
    background-color: #36393f;
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.course-card.featured {
    border: 2px solid #0099ff;
}

.course-image {
    position: relative;
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, #2c2f36 0%, #36393f 100%);
}

.course-image img {
    width: 80px;
    height: 80px;
    opacity: 0.8;
}

.course-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #ff4757;
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: bold;
}

.course-content {
    padding: 2rem;
}

.course-content h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

.course-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.course-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex-wrap: wrap;
}

.course-info span {
    background-color: #2c2f36;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #b8bcc8;
}

.course-features ul {
    margin: 1rem 0;
}

.course-features li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.course-features li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0099ff;
}

.course-schedule {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #2c2f36;
    border-radius: 8px;
    text-align: center;
}

/* Course Filter */
.course-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 1.5rem;
    background-color: #36393f;
    color: #e4e6ea;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
}

.filter-btn:hover,
.filter-btn.active {
    background-color: #0099ff;
    color: #ffffff;
}

.courses-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.course-item {
    display: flex;
    align-items: center;
    background-color: #36393f;
    padding: 2rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.course-item:hover {
    transform: translateX(10px);
}

.course-item.hidden {
    display: none;
}

.course-icon {
    flex-shrink: 0;
    margin-right: 2rem;
}

.course-icon img {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.course-info {
    flex-grow: 1;
}

.course-info h3 {
    color: #0099ff;
    margin-bottom: 0.5rem;
}

.course-meta {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.course-meta span {
    background-color: #2c2f36;
    padding: 0.2rem 0.8rem;
    border-radius: 15px;
    font-size: 0.9rem;
    color: #b8bcc8;
}

.course-action {
    flex-shrink: 0;
}

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

.format-card {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.format-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.format-card h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

.format-card ul {
    margin-top: 1.5rem;
    text-align: left;
}

.format-card li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.format-card li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0099ff;
    font-weight: bold;
}

/* Pricing */
.pricing-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.pricing-text ul {
    margin: 1.5rem 0;
}

.pricing-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.pricing-text li::before {
    content: "💰";
    position: absolute;
    left: 0;
}

.pricing-cta {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

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

.tip-card {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.tip-icon {
    margin-bottom: 1rem;
}

.tip-icon img {
    width: 50px;
    height: 50px;
    opacity: 0.8;
}

.tip-card h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

/* Exercise Tabs */
.exercise-categories {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.exercise-tab {
    padding: 1rem 2rem;
    background-color: #36393f;
    color: #e4e6ea;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
}

.exercise-tab:hover,
.exercise-tab.active {
    background-color: #0099ff;
    color: #ffffff;
}

.exercise-content {
    display: none;
}

.exercise-content.active {
    display: block;
}

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

.exercise-item {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
}

.exercise-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.exercise-header img {
    width: 40px;
    height: 40px;
    margin-right: 1rem;
    opacity: 0.8;
}

.exercise-header h3 {
    color: #0099ff;
}

.exercise-description ol,
.exercise-description ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.exercise-description li {
    padding: 0.3rem 0;
    color: #b8bcc8;
}

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

.resource-item {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
}

.resource-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.resource-item h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

.resource-item ul {
    margin: 1rem 0;
}

.resource-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.resource-item li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0099ff;
}

/* Practice Challenge */
.challenge-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

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

.week-item {
    background-color: #36393f;
    padding: 1.5rem;
    border-radius: 10px;
}

.week-item h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

.week-item ul {
    margin: 1rem 0;
}

.week-item li {
    padding: 0.3rem 0;
    padding-left: 1rem;
    position: relative;
    font-size: 0.9rem;
}

.week-item li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0099ff;
}

.challenge-cta {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

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

.team-member {
    display: flex;
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
    gap: 2rem;
    transition: transform 0.3s ease;
}

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

.member-image {
    flex-shrink: 0;
}

.member-image img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    opacity: 0.8;
}

.member-info {
    flex-grow: 1;
}

.member-title {
    color: #0099ff !important;
    font-style: italic;
    margin-bottom: 0.5rem !important;
}

.member-qualifications {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-top: 1rem;
}

.member-qualifications span {
    background-color: #2c2f36;
    padding: 0.3rem 0.8rem;
    border-radius: 15px;
    font-size: 0.8rem;
    color: #b8bcc8;
    align-self: flex-start;
}

/* Mission & Vision */
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mission-card,
.vision-card {
    background-color: #36393f;
    padding: 3rem 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
}

.mission-card img,
.vision-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1.5rem;
    opacity: 0.8;
}

.mission-card h3,
.vision-card h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

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

.value-card {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    transition: transform 0.3s ease;
}

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

.value-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.value-card h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

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

.certification-text ul {
    margin: 1.5rem 0;
}

.certification-text li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.certification-text li::before {
    content: "🏆";
    position: absolute;
    left: 0;
}

.certification-image img {
    width: 100%;
    max-width: 200px;
    opacity: 0.7;
}

/* Contact Form */
.contact-form-section {
    background-color: #2c2f36;
}

.contact-form-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact-form {
    background-color: #36393f;
    padding: 3rem;
    border-radius: 15px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: #2c2f36;
    border: 2px solid #40444b;
    border-radius: 5px;
    color: #e4e6ea;
    font-family: 'Oswald', sans-serif;
    transition: border-color 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #72767d;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    cursor: pointer;
    color: #b8bcc8;
    font-size: 0.9rem;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin-right: 0.8rem;
    margin-top: 0.2rem;
}

.error-message {
    color: #ff4757;
    font-size: 0.85rem;
    margin-top: 0.3rem;
    display: none;
}

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

.contact-card {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.contact-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.contact-card h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

.contact-details {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
}

.contact-details .contact-item {
    margin-bottom: 2rem;
}

.contact-details .contact-item:last-child {
    margin-bottom: 0;
}

.contact-details h4 {
    color: #0099ff;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    margin-bottom: 0.3rem;
}

.contact-details small {
    color: #72767d;
    font-size: 0.85rem;
}

.emergency-contact {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.emergency-contact h4 {
    color: #ff4757;
    margin-bottom: 1rem;
}

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

.hours-item {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.hours-item h3 {
    color: #0099ff;
    margin-bottom: 1.5rem;
}

.hours-item ul {
    text-align: left;
}

.hours-item li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
}

.hours-item li::before {
    content: "🕒";
    position: absolute;
    left: 0;
}

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

.location-details h4 {
    color: #0099ff;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.location-details ul {
    margin: 1rem 0;
}

.location-details li {
    padding: 0.3rem 0;
    padding-left: 1.2rem;
    position: relative;
}

.location-details li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #0099ff;
}

.location-map {
    background-color: #36393f;
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
}

.map-placeholder {
    padding: 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 300px;
}

.map-placeholder img {
    width: 80px;
    height: 80px;
    margin-bottom: 1rem;
    opacity: 0.5;
}

.map-placeholder p {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.map-placeholder small {
    color: #72767d;
    font-size: 0.9rem;
}

.location-map .btn {
    margin: 2rem;
}

/* FAQ */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
}

.faq-item {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
}

.faq-item h3 {
    color: #0099ff;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.social-card {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    color: inherit;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 153, 255, 0.15);
    color: inherit;
}

.social-card img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.social-card h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

/* Thanks Page */
.thanks-page {
    min-height: 80vh;
    padding-top: 80px;
}

.thanks-section {
    background-color: #2c2f36;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-icon img {
    width: 100px;
    height: 100px;
    opacity: 0.8;
}

.thanks-content h1 {
    color: #0099ff;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #b8bcc8;
}

.thanks-details {
    margin: 4rem 0;
}

.thanks-details h2 {
    margin-bottom: 2rem;
    color: #ffffff;
}

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

.step-item {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.step-item img {
    width: 50px;
    height: 50px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.step-item h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

.thanks-info {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
    margin: 3rem 0;
}

.thanks-info h2 {
    margin-bottom: 1rem;
}

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

.contact-option {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #2c2f36;
    border-radius: 25px;
    color: #0099ff;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.contact-option:hover {
    background-color: #40444b;
}

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

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.thanks-social {
    margin-top: 4rem;
}

.thanks-social h3 {
    margin-bottom: 1rem;
}

.thanks-social p {
    margin-bottom: 2rem;
}

/* Free Resources */
.free-resources {
    background-color: #1a1d21;
}

.resources-grid .resource-card {
    background-color: #36393f;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.resources-grid .resource-card:hover {
    transform: translateY(-5px);
}

.resources-grid .resource-card img {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
    opacity: 0.8;
}

.resources-grid .resource-card h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

/* Legal Content */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text {
    background-color: #36393f;
    padding: 3rem;
    border-radius: 15px;
    line-height: 1.8;
}

.legal-text h2 {
    color: #0099ff;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-text h3 {
    color: #66c2ff;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-text ul,
.legal-text ol {
    margin: 1rem 0;
    padding-left: 2rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #b8bcc8;
}

.legal-text strong {
    color: #e4e6ea;
}

.legal-text a {
    color: #0099ff;
    text-decoration: underline;
}

.legal-text a:hover {
    color: #66c2ff;
}

/* Cookie Table */
.cookie-table {
    width: 100%;
    margin: 1.5rem 0;
    border-collapse: collapse;
    background-color: #2c2f36;
    border-radius: 8px;
    overflow: hidden;
}

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

.cookie-table th {
    background-color: #0099ff;
    color: #ffffff;
    font-weight: 600;
}

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

/* Withdrawal Form */
.withdrawal-form {
    background-color: #2c2f36;
    padding: 2rem;
    border-radius: 10px;
    margin: 2rem 0;
    border-left: 4px solid #0099ff;
}

.withdrawal-form h4 {
    color: #0099ff;
    margin-bottom: 1rem;
}

/* Cookie Management */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #36393f;
    padding: 1.5rem;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.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-content p {
    margin: 0;
    color: #e4e6ea;
}

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

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

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

.cookie-modal-content {
    background-color: #36393f;
    padding: 3rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-modal-content h3 {
    color: #0099ff;
    margin-bottom: 2rem;
}

.cookie-option {
    margin-bottom: 1.5rem;
}

.cookie-option label {
    display: flex;
    align-items: center;
    cursor: pointer;
    color: #e4e6ea;
}

.cookie-option input[type="checkbox"] {
    margin-right: 1rem;
    width: auto;
}

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

/* Footer */
.footer {
    background-color: #1a1d21;
    padding: 3rem 0 1rem;
    border-top: 1px solid #36393f;
}

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

.footer-section h3 {
    color: #0099ff;
    margin-bottom: 1rem;
}

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

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

.footer-section ul {
    margin-top: 0.5rem;
}

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

.footer-section a {
    color: #b8bcc8;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #0099ff;
}

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

.social-links a {
    display: inline-block;
    transition: transform 0.3s ease;
}

.social-links a:hover {
    transform: translateY(-3px);
}

.social-links img {
    width: 30px;
    height: 30px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.social-links a:hover img {
    opacity: 1;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #36393f;
}

.footer-bottom p {
    color: #72767d;
    margin: 0;
}

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

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

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

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

/* Responsive Design */
@media (max-width: 768px) {
    /* Navigation */
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1d21;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.3);
        padding: 2rem 0;
        gap: 1rem;
    }

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

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
    }

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

    h2 {
        font-size: 2rem;
    }

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

    .hero-content p {
        font-size: 1.1rem;
    }

    /* Grids */
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .course-highlight {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .contact-form-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .location-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .pricing-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .challenge-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .certifications-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    /* Course Items */
    .course-item {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .course-icon {
        margin-right: 0;
    }

    /* Team Members */
    .team-member {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    /* Cookie Banner */
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    /* Buttons */
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }

    .contact-options {
        flex-direction: column;
        align-items: center;
    }

    /* Form */
    .contact-form {
        padding: 2rem;
    }

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

    /* Sections */
    .section {
        padding: 3rem 0;
    }

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

@media (max-width: 480px) {
    /* Typography */
    h1 {
        font-size: 2rem;
    }

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

    /* Spacing */
    .container {
        padding: 0 15px;
    }

    .section {
        padding: 2rem 0;
    }

    /* Cards */
    .advantage-card,
    .review-card,
    .tip-card,
    .resource-item {
        padding: 1.5rem;
    }

    .team-member,
    .format-card,
    .course-card .course-content {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 1.5rem;
    }

    .legal-text {
        padding: 2rem;
    }

    /* Buttons */
    .btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Exercise tabs and filters */
    .exercise-tab,
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.9rem;
    }

    /* Tables */
    .cookie-table {
        font-size: 0.8rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.5rem;
    }
    body {
        word-break: break-word;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    .course-highlight {
        padding: 3rem 1rem;
    }
    .page-header h1 {
        font-size: 2.5rem;
    }
}

/* Print Styles */
@media print {
    .header,
    .footer,
    .cookie-banner,
    .cookie-modal,
    .btn,
    .nav-toggle {
        display: none !important;
    }

    body {
        color: #000;
        background: #fff;
    }

    .section {
        page-break-inside: avoid;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    body {
        background-color: #000;
        color: #fff;
    }

    .section:nth-child(even) {
        background-color: #111;
    }

    .advantage-card,
    .review-card,
    .course-card,
    .contact-form,
    .legal-text {
        background-color: #222;
        border: 1px solid #444;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .hero-background {
        opacity: 0.05;
    }
}
