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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Courier New', 'Monaco', 'Lucida Console', monospace;
    background-color: #0a0a0a;
    color: #e0e0e0;
    line-height: 1.6;
    overflow-x: hidden;
    word-break: break-word;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Courier New', 'Monaco', 'Lucida Console', monospace;
    font-weight: bold;
    margin-bottom: 1rem;
    color: #44ff19;
}

h1 {
    font-size: 3rem;
    text-align: center;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    text-align: center;
}

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

h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

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

.lead {
    font-size: 1.25rem;
    font-weight: bold;
    color: #fbff19;
    margin-bottom: 1.5rem;
}

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

a:hover {
    color: #fbff19;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    font-family: 'Courier New', 'Monaco', 'Lucida Console', monospace;
    font-size: 1rem;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #44ff19;
    color: #0a0a0a;
    border-color: #44ff19;
}

.btn-primary:hover {
    background-color: #fbff19;
    color: #0a0a0a;
    border-color: #fbff19;
}

.btn-secondary {
    background-color: transparent;
    color: #44ff19;
    border-color: #44ff19;
}

.btn-secondary:hover {
    background-color: #44ff19;
    color: #0a0a0a;
}

.btn-tertiary {
    background-color: transparent;
    color: #fbff19;
    border-color: #fbff19;
}

.btn-tertiary:hover {
    background-color: #fbff19;
    color: #0a0a0a;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 2px solid #44ff19;
    padding: 20px;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

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

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

.cookie-buttons {
    display: flex;
    gap: 10px;
}

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

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

.modal-content {
    background-color: #1a1a1a;
    padding: 30px;
    border-radius: 8px;
    border: 2px solid #44ff19;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.cookie-category {
    margin-bottom: 20px;
    padding: 15px;
    background-color: #2a2a2a;
    border-radius: 4px;
}

.cookie-category label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    color: #44ff19;
    margin-bottom: 10px;
}

.cookie-category input[type="checkbox"] {
    width: 18px;
    height: 18px;
}

.modal-buttons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-top: 20px;
}

/* Navigation */
.navbar {
    background-color: #1a1a1a;
    border-bottom: 2px solid #44ff19;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    padding: 0;
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: bold;
    color: #44ff19;
    text-decoration: none;
}

.nav-logo img {
    width: 32px;
    height: 32px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 10px 0;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #44ff19;
    transition: 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

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

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

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

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    color: #44ff19;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

.hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #fbff19;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
}

/* Page Header */
.page-header {
    padding: 120px 0 80px;
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-bottom: 2px solid #44ff19;
}

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

.header-content img {
    width: 64px;
    height: 64px;
    margin-bottom: 1rem;
}

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

.header-content p {
    font-size: 1.25rem;
    color: #e0e0e0;
}

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

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

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

/* Grid Layouts */
.info-grid,
.benefits-grid,
.mentors-grid,
.achievements-grid,
.reviews-grid,
.course-grid,
.category-grid,
.tips-grid,
.faq-grid,
.steps-grid,
.suggestions-grid {
    display: grid;
    gap: 30px;
    margin-top: 2rem;
}

.info-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

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

.mentors-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

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

.course-grid {
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
}

.category-grid {
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
}

.tips-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.faq-grid {
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
}

.steps-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

.suggestions-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* Card Styles */
.info-item,
.benefit-item,
.mentor-item,
.achievement-item,
.review-item,
.course-card,
.category-card,
.tip-item,
.faq-item,
.step-item,
.suggestion-item {
    background-color: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s ease;
}

.info-item:hover,
.benefit-item:hover,
.mentor-item:hover,
.tip-item:hover,
.faq-item:hover,
.suggestion-item:hover {
    border-color: #44ff19;
    transform: translateY(-5px);
}

.course-card:hover {
    border-color: #44ff19;
    transform: translateY(-10px);
}

.category-card {
    background-color: #1a1a1a;
    border: 2px solid #44ff19;
    border-radius: 8px;
    overflow: hidden;
}

.category-header {
    background-color: #2a2a2a;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    border-bottom: 1px solid #44ff19;
}

.category-header img {
    width: 32px;
    height: 32px;
}

.category-header h2 {
    margin: 0;
    font-size: 1.5rem;
}

.exercises-list {
    padding: 20px;
}

.exercise-item {
    background-color: #2a2a2a;
    border: 1px solid #3a3a3a;
    border-radius: 4px;
    padding: 20px;
    margin-bottom: 20px;
}

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

.exercise-item h3 {
    color: #fbff19;
    margin-bottom: 10px;
}

.exercise-item p {
    margin-bottom: 8px;
}

.exercise-item strong {
    color: #44ff19;
}

/* Course Card Specific */
.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.course-header img {
    width: 40px;
    height: 40px;
}

.course-rating {
    display: flex;
    align-items: center;
    gap: 5px;
}

.rating {
    color: #fbff19;
    font-size: 1.1rem;
}

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

.course-details {
    margin: 1.5rem 0;
    padding: 1rem;
    background-color: #2a2a2a;
    border-radius: 4px;
}

.detail-item {
    margin-bottom: 0.5rem;
}

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

.detail-item strong {
    color: #44ff19;
}

.course-price {
    text-align: center;
    margin: 1.5rem 0;
}

.price {
    font-size: 2rem;
    font-weight: bold;
    color: #fbff19;
}

.price-period {
    color: #e0e0e0;
    font-size: 1rem;
}

/* Achievement Item */
.achievement-item {
    text-align: center;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-color: #44ff19;
}

.achievement-item h3 {
    font-size: 3rem;
    color: #fbff19;
    margin-bottom: 0.5rem;
}

/* Review Item */
.review-item {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.review-item .rating {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.reviewer {
    margin-top: 1rem;
    font-style: italic;
    color: #44ff19;
    text-align: right;
}

/* Step Item */
.step-item {
    text-align: center;
    position: relative;
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: #44ff19;
    color: #0a0a0a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0 auto 1rem;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2,
.contact-form h2 {
    margin-bottom: 2rem;
    text-align: left;
}

.contact-item {
    background-color: #1a1a1a;
    border: 2px solid #2a2a2a;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    transition: border-color 0.3s ease;
}

.contact-item:hover {
    border-color: #44ff19;
}

.contact-item img {
    width: 24px;
    height: 24px;
    margin-top: 5px;
}

.contact-item h3 {
    margin-bottom: 0.5rem;
    color: #44ff19;
}

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

/* Contact Preview */
.contact-preview {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 2px solid #44ff19;
    border-bottom: 2px solid #44ff19;
}

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

.contact-info .contact-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    background-color: #2a2a2a;
    border-color: #44ff19;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #44ff19;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    background-color: #2a2a2a;
    border: 2px solid #3a3a3a;
    border-radius: 4px;
    color: #e0e0e0;
    font-family: 'Courier New', 'Monaco', 'Lucida Console', monospace;
    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: #44ff19;
}

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

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

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

.checkbox-group label {
    margin-bottom: 0;
    cursor: pointer;
}

.checkmark {
    display: none;
}

/* Thank You Section */
.thank-you-section {
    padding: 120px 0 80px;
    text-align: center;
}

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

.thank-you-content img {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #44ff19;
}

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

.next-steps h2 {
    margin-bottom: 2rem;
    color: #fbff19;
}

.contact-reminder {
    background-color: #1a1a1a;
    border: 2px solid #44ff19;
    border-radius: 8px;
    padding: 2rem;
    margin: 2rem 0;
}

.contact-reminder h3 {
    color: #44ff19;
    margin-bottom: 1rem;
}

.phone-number {
    font-size: 1.5rem;
    font-weight: bold;
    color: #fbff19;
    margin: 1rem 0;
}

.office-hours {
    color: #e0e0e0;
    font-style: italic;
}

.action-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 2rem;
}

/* While You Wait Section */
.while-you-wait {
    background-color: #1a1a1a;
    border-top: 2px solid #44ff19;
    padding: 80px 0;
}

.while-you-wait h2 {
    text-align: center;
    color: #fbff19;
    margin-bottom: 3rem;
}

/* Tips Section */
.tips-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border-top: 2px solid #44ff19;
    border-bottom: 2px solid #44ff19;
}

.tips-section h2 {
    color: #fbff19;
    margin-bottom: 2rem;
}

/* FAQ Section */
.faq-section {
    background-color: #1a1a1a;
    border-top: 2px solid #44ff19;
}

.faq-section h2 {
    color: #fbff19;
    margin-bottom: 2rem;
}

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

.legal-content h1 {
    color: #44ff19;
    margin-bottom: 1rem;
    text-align: left;
}

.last-updated {
    color: #e0e0e0;
    font-style: italic;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #2a2a2a;
}

.legal-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #2a2a2a;
}

.legal-section:last-child {
    border-bottom: none;
}

.legal-section h2 {
    color: #44ff19;
    margin-bottom: 1rem;
    text-align: left;
}

.legal-section h3 {
    color: #fbff19;
    margin-bottom: 0.75rem;
}

.legal-section ul {
    padding-left: 2rem;
    margin-bottom: 1rem;
}

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

.cookie-controls {
    margin: 2rem 0;
    text-align: center;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
}

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #2a2a2a;
    border: 2px solid #3a3a3a;
    transition: all 0.3s ease;
}

.social-links a:hover {
    border-color: #44ff19;
    transform: scale(1.1);
}

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

/* Footer */
.footer {
    background-color: #1a1a1a;
    border-top: 2px solid #44ff19;
    padding: 60px 0 20px;
}

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

.footer-section h3 {
    color: #44ff19;
    margin-bottom: 1rem;
}

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

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

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

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

.footer-section a:hover {
    color: #44ff19;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #1a1a1a;
        border-bottom: 2px solid #44ff19;
        flex-direction: column;
        padding: 20px;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .hamburger {
        display: flex;
    }

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

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

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

    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.75rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info {
        grid-template-columns: 1fr;
    }

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

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

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

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

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

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

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

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

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

    .header-content h1 {
        font-size: 2rem;
    }

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

    .course-grid,
    .info-grid,
    .benefits-grid,
    .mentors-grid,
    .achievements-grid,
    .reviews-grid,
    .tips-grid,
    .faq-grid {
        grid-template-columns: 1fr;
    }

    .modal-content {
        padding: 20px;
    }

    .legal-content {
        padding: 100px 0 60px;
    }

    section {
        padding: 60px 0;
    }
    [class*="-grid"] {
        grid-template-columns: 1fr;
    }
    .contact-item {
        flex-direction: column;
    }
    .exercises-list {
        padding: 0;
    }
}

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

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

/* Smooth scrolling offset for fixed navbar */
html {
    scroll-padding-top: 70px;
}

/* Focus styles for accessibility */
*:focus {
    outline: 2px solid #44ff19;
    outline-offset: 2px;
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    body {
        background-color: #000;
        color: #fff;
    }
    
    .btn-primary {
        background-color: #fff;
        color: #000;
        border-color: #fff;
    }
    
    .btn-secondary {
        background-color: #000;
        color: #fff;
        border-color: #fff;
    }
}

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