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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1a1a;
    overflow-x: hidden;
    word-break: break-word;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    margin-bottom: 1rem;
    font-weight: 600;
}

h1 {
    font-size: 2.5rem;
    line-height: 1.2;
}

h2 {
    font-size: 2rem;
    line-height: 1.3;
}

h3 {
    font-size: 1.5rem;
    line-height: 1.4;
}

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

/* Links */
a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

a:hover {
    color: #c9ff4d;
}

/* Buttons */
.btn-primary {
    background-color: #c9ff4d;
    color: #1a1a1a !important;
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary:hover {
    background-color: #b8e63d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(201, 255, 77, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #c9ff4d;
    padding: 12px 24px;
    border: 2px solid #c9ff4d;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-secondary:hover {
    background-color: #c9ff4d;
    color: #1a1a1a;
}

/* Header */
.header {
    background-color: #0f0f0f;
    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 .logo-icon {
    height: 40px;
    width: auto;
}

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

.nav-link {
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

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

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #c9ff4d;
}

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

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

/* Hero Section */
.hero {
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

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

.hero-content {
    text-align: center;
    z-index: 1;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #ffffff, #c9ff4d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

/* Page Hero */
.page-hero {
    background: linear-gradient(135deg, #0f0f0f, #2a2a2a);
    padding: 6rem 0 4rem;
    text-align: center;
    padding-top: 10rem;
}

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

.section.bg-dark {
    background-color: #0f0f0f;
}

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

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

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

.content-text {
    font-size: 1.1rem;
    line-height: 1.8;
}

.content-image svg {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

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

.advantage-item {
    text-align: center;
    padding: 2rem;
    border-radius: 10px;
    background: rgba(201, 255, 77, 0.05);
    transition: transform 0.3s ease;
}

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

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

/* Course Highlight */
.course-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    padding: 3rem;
}

.course-image svg {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.course-details h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #c9ff4d;
}

.course-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.course-info {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.course-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

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

.original-price {
    text-decoration: line-through;
    color: #999;
    font-size: 1rem;
}

.discounted-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #c9ff4d;
}

.discount {
    background-color: #c9ff4d;
    color: #1a1a1a;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    font-size: 0.8rem;
    font-weight: bold;
}

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

.faq-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 10px;
    border-left: 4px solid #c9ff4d;
}

.faq-item h3 {
    color: #c9ff4d;
    margin-bottom: 1rem;
}

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

.review-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
}

.review-stars {
    margin-bottom: 1rem;
}

.star {
    color: #c9ff4d;
    font-size: 1.2rem;
}

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

/* Newsletter Form */
.newsletter-form {
    max-width: 600px;
    margin: 2rem auto 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.newsletter-form .form-group {
    margin-bottom: 0;
}

.newsletter-form button {
    grid-column: 1 / -1;
    justify-self: center;
    max-width: 200px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #333;
    border-radius: 5px;
    background-color: #2a2a2a;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
}

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

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: rgba(201, 255, 77, 0.2);
    transform: translateY(-3px);
}

.social-links svg {
    width: 24px;
    height: 24px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.contact-form-section,
.contact-info-section {
    background: rgba(255, 255, 255, 0.02);
    padding: 3rem;
    border-radius: 15px;
}

.contact-details .contact-item {
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-details .contact-item h3 {
    margin: 0 0 0.5rem 0;
    color: #c9ff4d;
}

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

.team-member {
    text-align: center;
    background: rgba(255, 255, 255, 0.02);
    padding: 2rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

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

.team-photo {
    margin-bottom: 1.5rem;
}

.team-photo svg {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto;
}

.team-role {
    color: #c9ff4d;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

.value-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

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

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

.course-card {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.course-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(201, 255, 77, 0.1);
}

.course-image {
    position: relative;
}

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

.course-content {
    padding: 2rem;
}

.course-content h3 {
    color: #c9ff4d;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

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

.stars {
    color: #c9ff4d;
    font-size: 1.1rem;
}

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

.course-details {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    margin-bottom: 2rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
}

.course-duration {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

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

.price {
    font-size: 1.3rem;
    font-weight: bold;
    color: #c9ff4d;
}

.course-form {
    margin: 0;
}

.course-form button {
    width: 100%;
}

/* CTA Section */
.cta-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

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

.cta-content p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

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

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

.thank-you-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.thank-you-message {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #e0e0e0;
}

.next-steps {
    margin-bottom: 3rem;
}

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

.step-item {
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 10px;
}

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

.contact-info-box {
    background: rgba(201, 255, 77, 0.05);
    padding: 2rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.contact-info-box h3 {
    color: #c9ff4d;
    margin-bottom: 1rem;
}

.contact-info-box .contact-details {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 1rem;
}

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

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

.location-image svg {
    width: 100%;
    height: 200px;
    border-radius: 10px;
}

.location-text {
    font-size: 1.1rem;
    line-height: 1.7;
}

/* Footer */
.footer {
    background-color: #0f0f0f;
    padding: 4rem 0 2rem;
    border-top: 1px solid #333;
}

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

.footer-section h3,
.footer-section h4 {
    color: #c9ff4d;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #999;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0f0f0f;
    padding: 1rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    z-index: 10000;
    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;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

.cookie-buttons button {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background-color: #0f0f0f;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 2rem;
        transition: left 0.3s ease;
    }

    .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(8px) rotate(45deg);
    }

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    .content-grid,
    .course-highlight,
    .contact-grid,
    .location-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .course-highlight, .contact-form-section, .contact-info-section {
        padding: 3rem 1rem;
    }

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

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

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

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

    .contact-info-box .contact-details {
        flex-direction: column;
        gap: 1rem;
    }

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

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

    .section {
        padding: 3rem 0;
    }

    .hero-title {
        font-size: 2rem;
    }

    .course-info {
        flex-direction: column;
        align-items: flex-start;
    }

    .steps-grid, [class*="-grid"] {
        grid-template-columns: 1fr;
    }
}