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

body {
    font-family: 'Arial Black', Arial, sans-serif;
    line-height: 1.2;
    color: #1a1a1a;
    background-color: #f5f5f5;
}

/* Brutalism Typography */
h1, h2, h3, h4, h5, h6 {
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    line-height: 0.9;
}

h2 {
    font-size: 2.5rem;
    line-height: 0.9;
}

h3 {
    font-size: 20px;
    line-height: 1;
}

p {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 3px solid;
    background: none;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-primary {
    color: #1a1a1a;
    border-color: #1a1a1a;
    background-color: #ffff00;
}

.btn-primary:hover {
    background-color: #1a1a1a;
    color: #ffff00;
}

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

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 2rem;
    z-index: 1000;
    border-top: 5px solid #ffff00;
}

.cookie-content h3 {
    color: #ffff00;
    margin-bottom: 1rem;
}

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

.cookie-banner .btn {
    padding: 0.8rem 1.5rem;
    font-size: 0.9rem;
}

.cookie-banner.hidden {
    display: none;
}

/* Header */
.header {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    border-bottom: 5px solid #ffff00;
}

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

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

.logo img {
    width: 40px;
    height: 40px;
}

.logo span {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffff00;
}

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

.nav a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 700;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.nav a:hover {
    border-color: #ffff00;
    color: #ffff00;
}

/* Hero Section */
.hero {
    background-color: #f5f5f5;
    padding: 10rem 0 8rem;
    margin-top: 80px;
    border-bottom: 8px solid #1a1a1a;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-text h1 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-shadow: 3px 3px 0px #ffff00;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 3rem;
    color: #333;
}

.hero-cta {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.hero-graphic img {
    width: 100%;
    max-width: 500px;
    height: auto;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 100px;
    height: 5px;
    background-color: #ffff00;
    margin: 1rem auto;
}

/* About Section */
.about {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 8rem 0;
    border-bottom: 8px solid #ffff00;
}

.about .section-header h2 {
    color: #ffff00;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.about-text h3 {
    color: #ffff00;
    margin-bottom: 2rem;
}

.stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    border: 3px solid #ffff00;
    background-color: rgba(255, 255, 0, 0.1);
}

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

.about-features h3 {
    color: #ffff00;
    margin-bottom: 2rem;
}

.about-features ul {
    list-style: none;
}

.about-features li {
    padding: 1rem 0;
    border-bottom: 2px solid #333;
    position: relative;
    padding-left: 2rem;
}

.about-features li:before {
    content: "▶";
    position: absolute;
    left: 0;
    color: #ffff00;
    font-weight: 900;
}

/* Services Section */
.services {
    background-color: #f5f5f5;
    padding: 8rem 0;
    border-bottom: 8px solid #1a1a1a;
}

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

.service-card {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 3rem 2rem;
    text-align: center;
    border: 5px solid #ffff00;
    position: relative;
}

.service-card img {
    width: 80px;
    height: 80px;
    margin-bottom: 2rem;
}

.service-card h3 {
    color: #ffff00;
    margin-bottom: 2rem;
}

.course-modules {
    margin-top: 4rem;
}

.course-modules h3 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
}

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

.module {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 2rem;
    border-left: 5px solid #ffff00;
}

.module h4 {
    color: #ffff00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Testimonials Section */
.testimonials {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 8rem 0;
    border-bottom: 8px solid #ffff00;
}

.testimonials .section-header h2 {
    color: #ffff00;
}

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

.testimonial {
    background-color: #f5f5f5;
    color: #1a1a1a;
    padding: 3rem 2rem;
    border: 5px solid #ffff00;
    position: relative;
}

.testimonial blockquote {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial cite {
    display: block;
    font-style: normal;
}

.testimonial cite strong {
    display: block;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.testimonial cite span {
    color: #666;
    font-size: 0.9rem;
}

/* Blog Section */
.blog {
    background-color: #f5f5f5;
    padding: 8rem 0;
    border-bottom: 8px solid #1a1a1a;
}

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

.blog-card {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 2rem;
    border: 3px solid #ffff00;
    position: relative;
}

.blog-card h3 {
    margin-bottom: 1rem;
}

.blog-card h3 a {
    color: #ffff00;
    text-decoration: none;
}

.blog-card h3 a:hover {
    text-decoration: underline;
}

.blog-card p {
    margin-bottom: 2rem;
    font-size: 1rem;
}

.blog-date {
    color: #ffff00;
    font-weight: 700;
    font-size: 0.9rem;
}

/* Blog Content Sections */
.blog-content {
    background-color: #f5f5f5;
    padding: 8rem 0;
    display: none;
}

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

.blog-article {
    max-width: 800px;
    margin: 0 auto;
}

.blog-article h2 {
    margin-bottom: 2rem;
    text-align: center;
}

.blog-article p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 8rem 0;
    border-bottom: 8px solid #ffff00;
}

.contact .section-header h2 {
    color: #ffff00;
}

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

.contact-info h3 {
    color: #ffff00;
    margin-bottom: 2rem;
}

.contact-details {
    margin-top: 3rem;
}

.contact-item {
    padding: 1rem 0;
    border-bottom: 2px solid #333;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item strong {
    color: #ffff00;
    font-size: 0.9rem;
}

/* Enrollment Form */
.enrollment-form {
    background-color: #f5f5f5;
    color: #1a1a1a;
    padding: 3rem;
    border: 5px solid #ffff00;
}

.enrollment-form h3 {
    color: #1a1a1a;
    margin-bottom: 2rem;
    text-align: center;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 700;
    font-size: 0.9rem;
}

.form-group input {
    width: 100%;
    padding: 1rem;
    border: 3px solid #1a1a1a;
    background-color: #f5f5f5;
    font-size: 1rem;
    font-weight: 600;
}

.form-group input:focus {
    outline: none;
    border-color: #ffff00;
    background-color: #fff;
}

/* Legal Section */
.legal {
    background-color: #f5f5f5;
    padding: 2rem 0;
    border-bottom: 3px solid #1a1a1a;
}

.legal-links {
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.legal-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    padding: 0.5rem 1rem;
    border: 2px solid transparent;
    transition: all 0.2s ease;
}

.legal-links a:hover {
    border-color: #1a1a1a;
}

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

.modal-content {
    background-color: #f5f5f5;
    margin: 5% auto;
    padding: 3rem;
    border: 5px solid #1a1a1a;
    width: 90%;
    max-width: 800px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.close {
    color: #1a1a1a;
    float: right;
    font-size: 2rem;
    font-weight: bold;
    position: absolute;
    top: 1rem;
    right: 2rem;
    cursor: pointer;
}

.close:hover {
    color: #666;
}

.modal-body h3 {
    color: #1a1a1a;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.modal-body ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.modal-body li {
    margin-bottom: 0.5rem;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 4rem 0 2rem;
}

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

.footer-section h3 {
    color: #ffff00;
    margin-bottom: 2rem;
}

.footer-section p {
    font-size: 1rem;
    line-height: 1.4;
}

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

.social-links a {
    display: block;
    width: 40px;
    height: 40px;
    border: 2px solid #ffff00;
    padding: 8px;
    transition: all 0.2s ease;
}

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

.social-links img {
    width: 100%;
    height: 100%;
}

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

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

.footer-section ul a {
    color: #f5f5f5;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

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

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

/* Thanks Page */
.thanks {
    background-color: #f5f5f5;
    padding: 10rem 0 8rem;
    margin-top: 80px;
    text-align: center;
}

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

.thanks-content h1 {
    color: #1a1a1a;
    margin-bottom: 3rem;
    text-shadow: 3px 3px 0px #ffff00;
}

.thanks-message {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 3rem;
    border: 5px solid #ffff00;
    margin-bottom: 3rem;
}

.thanks-message h2 {
    color: #ffff00;
    margin-bottom: 2rem;
}

.next-steps, .contact-info {
    background-color: #1a1a1a;
    color: #f5f5f5;
    padding: 3rem;
    border: 3px solid #ffff00;
    margin-bottom: 3rem;
    text-align: left;
}

.next-steps h3, .contact-info h3 {
    color: #ffff00;
    margin-bottom: 2rem;
    text-align: center;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps li {
    padding: 1rem 0;
    border-bottom: 2px solid #333;
    position: relative;
    padding-left: 2rem;
}

.next-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #ffff00;
    font-weight: 900;
    font-size: 1.2rem;
}

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

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    .header .container {
        flex-direction: column;
        gap: 1rem;
    }
    
    .nav ul {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .hero {
        padding: 8rem 0 6rem;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .stats {
        flex-direction: column;
        gap: 2rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .blog-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .legal-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 6rem 0 4rem;
    }
    
    .modal-content {
        margin: 10% auto;
        padding: 2rem;
        width: 95%;
    }
    
    .enrollment-form {
        padding: 2rem;
    }
    
    .service-card, .testimonial {
        padding: 2rem 1rem;
    }
}
