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

html {
    scroll-behavior: smooth;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    color: #ffffff;
    line-height: 1.2;
}

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

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

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

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

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

a {
    color: #ff0077;
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: #ffbb00;
}

/* Header and Navigation */
.header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 0, 119, 0.1);
}

.navbar {
    padding: 1rem;
}

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

.nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0077;
    text-decoration: none;
}

.nav-logo:hover {
    color: #ffbb00;
}

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

.nav-link {
    color: #e0e0e0;
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background: linear-gradient(135deg, #ff0077, #ffbb00);
    color: #ffffff;
}

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

.bar {
    width: 25px;
    height: 3px;
    background-color: #e0e0e0;
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.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);
}

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

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

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

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ff0077, #ffbb00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #b0b0b0;
}

/* Buttons */
.cta-button,
.btn-primary,
.course-button,
.contact-button,
.submit-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #ff0077, #ffbb00);
    color: #ffffff;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-button:hover,
.btn-primary:hover,
.course-button:hover,
.contact-button:hover,
.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 119, 0.3);
    color: #ffffff;
}

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: #ff0077;
    font-weight: 600;
    border: 2px solid #ff0077;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

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

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

.page-hero {
    padding: 8rem 0 4rem;
    text-align: center;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
}

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

.section-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: block;
}

/* Company Info Section */
.company-info {
    background: #111111;
}

.company-content p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

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

.stat {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 0, 119, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: #ff0077;
    margin-bottom: 0.5rem;
}

.stat p {
    color: #b0b0b0;
    margin: 0;
}

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

.advantage-card {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 187, 0, 0.1);
    transition: all 0.3s ease;
}

.advantage-card:hover {
    transform: translateY(-5px);
    border-color: #ffbb00;
    box-shadow: 0 10px 20px rgba(255, 187, 0, 0.1);
}

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

/* Popular Course Section */
.popular-course {
    background: #111111;
}

.course-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 119, 0.1);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.course-card.featured {
    border: 2px solid #ff0077;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a1a2a 100%);
}

.course-content {
    padding: 2rem;
}

.course-level {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #ffbb00;
    color: #000;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.featured-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: #ff0077;
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.course-info {
    display: flex;
    justify-content: space-between;
    margin-bottom: 0.5rem;
}

.course-info .label {
    font-weight: 600;
    color: #e0e0e0;
}

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

.stars {
    color: #ffbb00;
    margin-right: 0.5rem;
}

.rating-text {
    color: #b0b0b0;
    font-size: 0.875rem;
}

.course-schedule ul {
    list-style: none;
    margin-left: 1rem;
}

.course-schedule li {
    color: #b0b0b0;
    margin-bottom: 0.25rem;
}

.course-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.5rem 0;
}

.course-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0077;
}

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

.new-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ff0077;
}

.discount {
    background: #ffbb00;
    color: #000;
    padding: 0.25rem 0.5rem;
    border-radius: 10px;
    font-size: 0.875rem;
    font-weight: 600;
}

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

.achievement {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 187, 0, 0.05);
    border-radius: 15px;
    border: 1px solid rgba(255, 187, 0, 0.1);
}

.achievement h4 {
    color: #ffbb00;
    margin-bottom: 1rem;
}

/* Reviews Section */
.reviews {
    background: #111111;
}

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

.review-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
}

.stars {
    color: #ffbb00;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
}

.review-card cite {
    color: #ff0077;
    font-weight: 600;
}

/* Contact Section */
.contact-preview {
    background: #111111;
}

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

.contact-item {
    text-align: center;
    padding: 2rem;
    background: #1a1a1a;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
}

.contact-item h4 {
    color: #ff0077;
    margin-bottom: 1rem;
}

/* Footer */
.footer {
    background: #000000;
    padding: 3rem 0 1rem;
    border-top: 1px solid rgba(255, 0, 119, 0.1);
}

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

.footer-section h4 {
    color: #ff0077;
    margin-bottom: 1rem;
}

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

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

.footer-section ul li a {
    color: #b0b0b0;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ff0077;
}

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

.social-links a {
    padding: 0.5rem 1rem;
    background: rgba(255, 0, 119, 0.1);
    border-radius: 20px;
    color: #ff0077;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #ff0077;
    color: #ffffff;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 0, 119, 0.1);
    color: #666;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(255, 0, 119, 0.2);
    padding: 1rem;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

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

.cookie-buttons button {
    padding: 0.5rem 1rem;
    border: 1px solid #ff0077;
    background: transparent;
    color: #ff0077;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-buttons button:hover {
    background: #ff0077;
    color: #ffffff;
}

/* Cookie Modal */
.cookie-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
}

.cookie-modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-modal-content {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(255, 0, 119, 0.2);
}

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

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: #e0e0e0;
}

/* About Page Styles */
.company-story {
    padding: 4rem 0;
}

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

.story-content h2,
.story-content h3 {
    color: #ff0077;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.teachers {
    background: #111111;
    padding: 4rem 0;
}

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

.teacher-card {
    background: #1a1a1a;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 0, 119, 0.1);
    transition: all 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

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

.teacher-info {
    padding: 2rem;
}

.teacher-title {
    color: #ffbb00;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.teacher-credentials span {
    background: rgba(255, 0, 119, 0.1);
    color: #ff0077;
    padding: 0.25rem 0.75rem;
    border-radius: 15px;
    font-size: 0.875rem;
}

.values {
    padding: 4rem 0;
}

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

.value-card {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 187, 0, 0.1);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #ffbb00;
}

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

.detailed-stats {
    background: #111111;
    padding: 4rem 0;
}

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

.stat-card {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: #ff0077;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: #ffbb00;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Courses Page Styles */
.course-filter {
    padding: 2rem 0;
    background: #111111;
}

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

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #e0e0e0;
    border: 1px solid rgba(255, 0, 119, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, #ff0077, #ffbb00);
    color: #ffffff;
    border-color: transparent;
}

.courses-grid {
    padding: 4rem 0;
}

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

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

.course-form {
    margin-top: 1rem;
}

.course-benefits {
    background: #111111;
    padding: 4rem 0;
}

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

.benefit-item {
    background: #1a1a1a;
    padding: 1.5rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
    text-align: center;
}

.benefit-item h4 {
    color: #ff0077;
    margin-bottom: 0.5rem;
}

/* Tips Page Styles */
.tips-categories {
    background: #111111;
    padding: 2rem 0;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 0.75rem 1.5rem;
    background: transparent;
    color: #e0e0e0;
    border: 1px solid rgba(255, 0, 119, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, #ff0077, #ffbb00);
    color: #ffffff;
    border-color: transparent;
}

.tips-content {
    padding: 4rem 0;
}

.tips-category {
    display: none;
}

.tips-category.active {
    display: block;
}

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

.tip-card,
.exercise-card {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
    transition: all 0.3s ease;
}

.tip-card:hover,
.exercise-card:hover {
    transform: translateY(-5px);
    border-color: #ff0077;
}

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

.tip-details h4 {
    color: #ffbb00;
    margin: 1rem 0 0.5rem;
}

.tip-details ol,
.tip-details ul {
    margin-left: 1rem;
}

.tip-details li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.exercise-details {
    margin-top: 1rem;
}

.exercise-details h4 {
    color: #ffbb00;
    margin-bottom: 0.5rem;
}

.exercise-details ol {
    margin-left: 1rem;
}

.exercise-details li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.tips-cta {
    background: #111111;
    padding: 4rem 0;
    text-align: center;
}

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

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

.cta-button.primary {
    background: linear-gradient(135deg, #ff0077, #ffbb00);
}

.cta-button.secondary {
    background: transparent;
    border: 2px solid #ff0077;
    color: #ff0077;
}

.cta-button.secondary:hover {
    background: #ff0077;
    color: #ffffff;
}

/* Contact Page Styles */
.contact-info-section {
    padding: 4rem 0;
}

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

.contact-methods {
    display: grid;
    gap: 2rem;
}

.contact-method {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
    text-align: center;
}

.contact-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 1rem;
    display: block;
}

.contact-method h3 {
    color: #ff0077;
    margin-bottom: 1rem;
}

.contact-form-container {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
}

.contact-form-container h2 {
    color: #ff0077;
    margin-bottom: 2rem;
    text-align: center;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: #1a1a1a;
    border: 1px solid rgba(255, 0, 119, 0.3);
    border-radius: 10px;
    color: #e0e0e0;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 0.5rem;
}

.checkbox-label {
    gap: 0.5rem;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    margin: 0;
    width: auto;
}

.faq-section {
    background: #111111;
    padding: 4rem 0;
}

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

.faq-item {
    background: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
}

.faq-item h4 {
    color: #ff0077;
    margin-bottom: 1rem;
}

.business-hours {
    padding: 4rem 0;
}

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

.hours-item {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
}

.hours-item h4 {
    color: #ff0077;
    margin-bottom: 1rem;
}

.hours-list {
    display: grid;
    gap: 0.5rem;
}

.hour-item {
    display: flex;
    justify-content: space-between;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255, 0, 119, 0.1);
}

.hour-item:last-child {
    border-bottom: none;
}

/* Legal Pages Styles */
.legal-page {
    padding: 6rem 0 4rem;
    word-break: break-word;
}

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

.last-updated {
    color: #666;
    font-style: italic;
    margin-bottom: 2rem;
}

.legal-content h2 {
    color: #ff0077;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: #ffbb00;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content ul,
.legal-content ol {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-content li {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.legal-content address {
    background: #111111;
    padding: 1rem;
    border-radius: 10px;
    border-left: 4px solid #ff0077;
    margin: 1rem 0;
    font-style: normal;
    line-height: 1.6;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
    background: #111111;
    border-radius: 10px;
    overflow: hidden;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid rgba(255, 0, 119, 0.1);
}

.cookie-table th {
    background: rgba(255, 0, 119, 0.1);
    color: #ff0077;
    font-weight: 600;
}

.cookie-table td {
    color: #b0b0b0;
}

.cookie-settings-section {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
    margin-top: 2rem;
    text-align: center;
}

.cookie-settings-btn {
    background: linear-gradient(135deg, #ff0077, #ffbb00);
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 0, 119, 0.3);
}

/* Thanks Page Styles */
.thanks-page {
    padding: 6rem 0 4rem;
    text-align: center;
}

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

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

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

.thanks-details {
    background: #111111;
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 0, 119, 0.1);
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-details h3 {
    color: #ff0077;
    text-align: center;
    margin-bottom: 2rem;
}

.next-steps {
    display: grid;
    gap: 1.5rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.step-number {
    background: linear-gradient(135deg, #ff0077, #ffbb00);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h4 {
    color: #ffbb00;
    margin-bottom: 0.5rem;
}

.step-content p {
    margin: 0;
    color: #b0b0b0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

.contact-reminder {
    background: rgba(255, 187, 0, 0.05);
    border: 1px solid rgba(255, 187, 0, 0.2);
    padding: 2rem;
    border-radius: 15px;
}

.contact-reminder h4 {
    color: #ffbb00;
    margin-bottom: 1rem;
}

.contact-reminder p {
    margin-bottom: 0.5rem;
    color: #b0b0b0;
}

.contact-reminder a {
    color: #ff0077;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
        border-top: 1px solid rgba(255, 0, 119, 0.1);
    }

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

    .nav-toggle {
        display: flex;
    }

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

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

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

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

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

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    section {
        padding: 3rem 0;
    }

    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .filter-buttons,
    .category-tabs {
        flex-direction: column;
        align-items: center;
    }

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

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

    .company-stats,
    .advantages-grid,
    .achievements-grid,
    .reviews-grid,
    .contact-info,
    .stats-grid,
    .values-grid,
    .benefits-grid,
    .faq-grid,
    .hours-grid {
        grid-template-columns: 1fr;
    }

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

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

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

    body {
        background: white;
        color: black;
    }

    .legal-content {
        font-size: 12px;
        line-height: 1.4;
    }
}

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

/* Focus States */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
    outline: 2px solid #ff0077;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --bg-color: #000000;
        --text-color: #ffffff;
        --accent-color: #ff0077;
        --secondary-color: #ffbb00;
    }
}
