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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    background-image: 
        radial-gradient(circle at 20% 20%, rgba(255, 89, 0, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 251, 0, 0.1) 0%, transparent 50%);
    min-height: 100vh;
}

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

/* Navigation Styles */
.navbar {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 89, 0, 0.3);
}

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

.nav-logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: #ff5900;
    text-decoration: none;
    text-shadow: 0 0 10px rgba(255, 89, 0, 0.5);
}

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #fffb00;
    background: rgba(255, 251, 0, 0.1);
    box-shadow: 0 0 15px rgba(255, 251, 0, 0.3);
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-top: 2px solid #ff5900;
    z-index: 1001;
    display: none;
}

.cookie-consent.show {
    display: block;
}

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

.cookie-buttons {
    margin-top: 15px;
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s ease;
}

.cookie-buttons button:first-child {
    background: #ff5900;
    color: white;
}

.cookie-buttons button:nth-child(2) {
    background: #fffb00;
    color: #0a0a0a;
}

.cookie-buttons button:last-child {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cookie-buttons button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 89, 0, 0.3);
}

/* Cookie Settings Modal */
.cookie-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1002;
}

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

.modal-content {
    background: #1a1a1a;
    padding: 30px;
    border-radius: 15px;
    border: 2px solid #ff5900;
    max-width: 500px;
    width: 90%;
}

.cookie-option {
    margin: 15px 0;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255, 89, 0, 0.1);
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff5900;
}

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

.banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

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

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff5900, #fffb00);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 30px rgba(255, 89, 0, 0.5);
}

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

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #ff5900, #fffb00);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 30px;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(255, 89, 0, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 89, 0, 0.5);
}

/* Section Styles */
section {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #ff5900;
    text-shadow: 0 0 20px rgba(255, 89, 0, 0.5);
}

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

/* Company Info */
.company-info {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 20px;
    padding: 60px 0;
    margin: 40px 0;
    border: 1px solid rgba(255, 89, 0, 0.2);
}

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

.info-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: #cccccc;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.stat-item {
    text-align: center;
    padding: 20px;
    border-radius: 15px;
    background: rgba(255, 89, 0, 0.1);
    border: 1px solid rgba(255, 89, 0, 0.3);
}

.stat-item h3 {
    font-size: 2.5rem;
    color: #fffb00;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 251, 0, 0.5);
}

.stat-item p {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.benefit-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 251, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.benefit-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 251, 0, 0.3);
    border-color: #fffb00;
}

.benefit-item h3 {
    font-size: 1.5rem;
    color: #fffb00;
    margin-bottom: 15px;
}

.benefit-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Popular Course */
.popular-course {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 20px;
    padding: 60px 0;
    margin: 40px 0;
    border: 1px solid rgba(255, 251, 0, 0.2);
}

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

.course-info h3 {
    font-size: 2rem;
    color: #ff5900;
    margin-bottom: 20px;
}

.course-info p {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.course-details {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.course-details span {
    background: rgba(255, 89, 0, 0.1);
    padding: 8px 15px;
    border-radius: 20px;
    color: #fffb00;
    font-weight: bold;
}

.course-start {
    margin: 20px 0;
    color: #ff5900;
    font-size: 1.1rem;
}

.course-button {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #fffb00, #ff5900);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.course-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 251, 0, 0.3);
}

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

.achievement-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px 20px;
    border-radius: 15px;
    border: 1px solid rgba(255, 89, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.achievement-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 89, 0, 0.3);
}

.achievement-item h3 {
    font-size: 2.2rem;
    color: #ff5900;
    margin-bottom: 10px;
    text-shadow: 0 0 15px rgba(255, 89, 0, 0.5);
}

.achievement-item p {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Newsletter */
.newsletter {
    background: rgba(26, 26, 26, 0.5);
    border-radius: 20px;
    padding: 60px 0;
    margin: 40px 0;
    border: 1px solid rgba(255, 251, 0, 0.2);
}

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

.newsletter-content h2 {
    font-size: 2.2rem;
    color: #fffb00;
    margin-bottom: 15px;
}

.newsletter-content p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 400px;
    margin: 0 auto;
}

.newsletter-form input {
    padding: 12px 20px;
    border: 2px solid rgba(255, 251, 0, 0.3);
    border-radius: 25px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #fffb00;
    box-shadow: 0 0 15px rgba(255, 251, 0, 0.3);
}

.newsletter-form button {
    padding: 12px 30px;
    background: linear-gradient(45deg, #fffb00, #ff5900);
    color: #0a0a0a;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 251, 0, 0.3);
}

/* Contact Info */
.contact-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 89, 0, 0.3);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
}

.contact-item h3 {
    color: #ff5900;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.contact-item p {
    color: #cccccc;
    margin: 0;
}

/* Footer */
.footer {
    background: rgba(10, 10, 10, 0.95);
    padding: 60px 0 20px;
    margin-top: 80px;
    border-top: 1px solid rgba(255, 89, 0, 0.3);
}

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

.footer-section h3 {
    color: #ff5900;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section p {
    color: #cccccc;
    margin-bottom: 20px;
}

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

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

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

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

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

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

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

.social-links img {
    width: 30px;
    height: 30px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 89, 0, 0.3);
    color: #cccccc;
}

/* Page Header */
.page-header {
    background: rgba(26, 26, 26, 0.8);
    padding: 120px 0 60px;
    text-align: center;
    margin-bottom: 60px;
}

.page-header h1 {
    font-size: 3rem;
    color: #ff5900;
    margin-bottom: 15px;
    text-shadow: 0 0 20px rgba(255, 89, 0, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    color: #cccccc;
}

/* About Page Styles */
.company-story {
    margin: 60px 0;
}

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

.story-text h2 {
    font-size: 2.2rem;
    color: #ff5900;
    margin-bottom: 20px;
}

.story-text p {
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.feature-image {
    width: 200px;
    height: 200px;
    opacity: 0.8;
}

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

.value-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 251, 0, 0.3);
    text-align: center;
}

.value-item h3 {
    color: #fffb00;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.value-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Teachers */
.teachers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.teacher-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 89, 0, 0.3);
    text-align: center;
    transition: all 0.3s ease;
}

.teacher-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 89, 0, 0.3);
}

.teacher-image {
    margin-bottom: 20px;
}

.teacher-photo {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 3px solid #ff5900;
}

.teacher-info h3 {
    color: #ff5900;
    margin-bottom: 8px;
    font-size: 1.3rem;
}

.teacher-role {
    color: #fffb00;
    font-weight: bold;
    margin-bottom: 15px;
}

.teacher-bio {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.teacher-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.teacher-expertise span {
    background: rgba(255, 251, 0, 0.1);
    color: #fffb00;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 251, 0, 0.3);
}

/* Company Stats */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.stat-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 89, 0, 0.3);
    text-align: center;
}

.stat-card h3 {
    font-size: 2.2rem;
    color: #ff5900;
    margin-bottom: 10px;
}

.stat-card p {
    color: #cccccc;
    font-size: 1.1rem;
}

/* Courses Page */
.course-filter {
    margin-bottom: 40px;
}

.filter-options {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    border: 2px solid rgba(255, 89, 0, 0.3);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #ff5900;
    color: #ffffff;
    border-color: #ff5900;
    box-shadow: 0 0 15px rgba(255, 89, 0, 0.3);
}

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

.course-card {
    background: rgba(26, 26, 26, 0.8);
    border-radius: 15px;
    padding: 30px;
    border: 1px solid rgba(255, 89, 0, 0.3);
    transition: all 0.3s ease;
}

.course-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 89, 0, 0.3);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

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

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

.stars {
    display: flex;
    gap: 2px;
    margin-bottom: 5px;
}

.star {
    width: 16px;
    height: 16px;
}

.rating-text {
    font-size: 0.9rem;
    color: #cccccc;
}

.course-content h3 {
    color: #ff5900;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

.course-content p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 20px;
}

.course-details {
    margin-bottom: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
}

.detail-icon {
    width: 20px;
    height: 20px;
}

.detail-item span {
    color: #cccccc;
    font-size: 0.95rem;
}

.course-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.feature-tag {
    background: rgba(255, 251, 0, 0.1);
    color: #fffb00;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 251, 0, 0.3);
}

.course-enroll-btn {
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #ff5900, #fffb00);
    color: #0a0a0a;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.course-enroll-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 89, 0, 0.3);
}

/* Reviews */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.review-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 251, 0, 0.3);
}

.review-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.review-card p {
    color: #cccccc;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.reviewer strong {
    color: #ff5900;
    display: block;
    margin-bottom: 5px;
}

.reviewer span {
    color: #fffb00;
    font-size: 0.9rem;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.contact-info-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 89, 0, 0.3);
    text-align: center;
}

.contact-info-card .contact-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: block;
}

.contact-info-card h3 {
    color: #ff5900;
    margin-bottom: 15px;
    font-size: 1.4rem;
}

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

.contact-hours {
    color: #fffb00;
    font-size: 0.9rem;
}

/* Contact Form */
.contact-form-section {
    background: rgba(26, 26, 26, 0.5);
    padding: 60px 0;
    border-radius: 20px;
    margin: 40px 0;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    color: #ff5900;
    margin-bottom: 15px;
    font-size: 2.2rem;
}

.form-header p {
    color: #cccccc;
    font-size: 1.1rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    color: #fffb00;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 20px;
    border: 2px solid rgba(255, 89, 0, 0.3);
    border-radius: 8px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ff5900;
    box-shadow: 0 0 15px rgba(255, 89, 0, 0.3);
}

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

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #cccccc;
    cursor: pointer;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ff5900;
}

.checkbox-label a {
    color: #fffb00;
    text-decoration: none;
}

.checkbox-label a:hover {
    text-decoration: underline;
}

.submit-btn {
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff5900, #fffb00);
    color: #0a0a0a;
    border: none;
    border-radius: 25px;
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 89, 0, 0.3);
}

/* Opening Hours */
.opening-hours {
    background: rgba(26, 26, 26, 0.5);
    padding: 60px 0;
    border-radius: 20px;
    margin: 40px 0;
}

.opening-hours h2 {
    text-align: center;
    color: #ff5900;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

.hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto;
}

.day-hours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(255, 89, 0, 0.1);
    border-radius: 8px;
    border: 1px solid rgba(255, 89, 0, 0.3);
}

.day {
    color: #fffb00;
    font-weight: bold;
}

.hours {
    color: #cccccc;
}

/* Quick Contact */
.quick-contact {
    text-align: center;
    padding: 40px 0;
}

.quick-contact h2 {
    color: #ff5900;
    margin-bottom: 20px;
    font-size: 2rem;
}

.quick-contact p {
    color: #cccccc;
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.quick-contact-options {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.quick-contact-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px 30px;
    background: rgba(26, 26, 26, 0.8);
    color: #ffffff;
    text-decoration: none;
    border-radius: 25px;
    border: 2px solid rgba(255, 89, 0, 0.3);
    transition: all 0.3s ease;
}

.quick-contact-btn:hover {
    background: #ff5900;
    border-color: #ff5900;
    transform: translateY(-2px);
}

.quick-contact-btn img {
    width: 24px;
    height: 24px;
}

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

.faq-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 251, 0, 0.3);
}

.faq-item h3 {
    color: #fffb00;
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.faq-item p {
    color: #cccccc;
    line-height: 1.6;
}

/* Legal Pages */
.legal-content {
    padding: 40px 0;
}

.legal-document {
    max-width: 800px;
    margin: 0 auto;
    background: rgba(26, 26, 26, 0.5);
    padding: 40px;
    border-radius: 15px;
    border: 1px solid rgba(255, 89, 0, 0.3);
}

.legal-document h2 {
    color: #ff5900;
    margin-bottom: 20px;
    font-size: 1.8rem;
}

.legal-document h3 {
    color: #fffb00;
    margin-bottom: 15px;
    font-size: 1.4rem;
    margin-top: 30px;
}

.legal-document p {
    color: #cccccc;
    line-height: 1.6;
    margin-bottom: 15px;
}

.legal-document ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-document li {
    color: #cccccc;
    margin-bottom: 8px;
}

.legal-document a {
    color: #fffb00;
    text-decoration: none;
}

.legal-document a:hover {
    text-decoration: underline;
}

/* Thanks Page */
.thanks-section {
    padding: 120px 0 60px;
    text-align: center;
    min-height: 60vh;
    display: flex;
    align-items: center;
}

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

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

.thanks-content h1 {
    font-size: 3rem;
    color: #ff5900;
    margin-bottom: 20px;
    text-shadow: 0 0 20px rgba(255, 89, 0, 0.5);
}

.thanks-message {
    font-size: 1.2rem;
    color: #cccccc;
    margin-bottom: 40px;
    line-height: 1.6;
}

.thanks-details {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 251, 0, 0.3);
    margin-bottom: 40px;
}

.thanks-details h3 {
    color: #fffb00;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.thanks-details ul {
    list-style: none;
    text-align: left;
}

.thanks-details li {
    color: #cccccc;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.thanks-details li:before {
    content: "✓";
    color: #ff5900;
    position: absolute;
    left: 0;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-block;
    padding: 15px 30px;
    background: linear-gradient(45deg, #ff5900, #fffb00);
    color: #0a0a0a;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 89, 0, 0.3);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    border: 2px solid #ffffff;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

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

.quick-info {
    background: rgba(26, 26, 26, 0.5);
    padding: 60px 0;
    border-radius: 20px;
    margin: 40px 0;
}

.quick-info h2 {
    text-align: center;
    color: #ff5900;
    margin-bottom: 40px;
    font-size: 2.2rem;
}

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

.quick-contact-item {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 89, 0, 0.3);
    text-align: center;
}

.quick-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.quick-contact-item h3 {
    color: #fffb00;
    margin-bottom: 15px;
}

.quick-contact-item p {
    color: #cccccc;
    margin-bottom: 10px;
}

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

.course-preview-card {
    background: rgba(26, 26, 26, 0.8);
    padding: 30px;
    border-radius: 15px;
    border: 1px solid rgba(255, 89, 0, 0.3);
    text-align: center;
}

.course-preview-icon {
    width: 50px;
    height: 50px;
    margin-bottom: 20px;
}

.course-preview-card h3 {
    color: #ff5900;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.course-preview-card p {
    color: #cccccc;
    margin-bottom: 15px;
}

.price {
    color: #fffb00;
    font-weight: bold;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 1rem;
    }
    
    .story-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .course-details {
        flex-direction: column;
        gap: 15px;
    }
    
    .thanks-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .quick-contact-options {
        flex-direction: column;
        align-items: center;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .filter-options {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .course-card,
    .benefit-item,
    .teacher-card {
        padding: 20px;
    }
    
    .legal-document {
        padding: 20px;
    }
    
    .thanks-content h1 {
        font-size: 2.5rem;
    }
    .contact-details,  [class*="-grid"], .courses-container {
        grid-template-columns: 1fr;
    }
    body {
        word-break: break-word;
    }
}

/* Print Styles */
@media print {
    .navbar,
    .footer,
    .cookie-consent,
    .cookie-modal {
        display: none;
    }
    
    body {
        background: white;
        color: black;
    }
    
    .hero-banner {
        height: auto;
        padding: 40px 0;
    }
    
    .hero-content h1 {
        color: #333;
    }
    
    .section-header h2 {
        color: #333;
    }
}
