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

body {
    font-family: 'Inter', sans-serif;
    background-color: #1a4d3a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* Header Styles */
.header {
    background-color: #1a4d3a;
    padding: 20px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 2px solid #00ff00;
}

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

.logo h1 {
    font-size: 2rem;
    font-weight: 700;
    color: #00ff00;
    text-transform: uppercase;
}

.logo a {
    text-decoration: none;
    color: inherit;
}

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

.nav-menu a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: #00ff00;
}

/* Mobile Navigation */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #ffffff;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    margin-top: 80px;
    min-height: calc(100vh - 160px);
    padding-bottom: 100px; /* Space for cookie banner */
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1a4d3a 0%, #2d6b4f 100%);
    padding: 100px 0;
    text-align: center;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.hero p {
    font-size: 1.3rem;
    margin-bottom: 40px;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-image {
    width: 200px;
    height: 200px;
    margin: 40px auto;
    background-color: #2d6b4f;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid #00ff00;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 15px 30px;
    background-color: #00ff00;
    color: #1a4d3a;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.btn:hover {
    background-color: #00cc00;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #00ff00;
    border: 2px solid #00ff00;
}

.btn-secondary:hover {
    background-color: #00ff00;
    color: #1a4d3a;
}

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

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ffffff;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    margin-bottom: 60px;
    color: #e0e0e0;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Card Styles */
.card {
    background-color: #2d6b4f;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 30px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00ff00;
    text-transform: uppercase;
}

.card p {
    color: #e0e0e0;
    margin-bottom: 20px;
}

.card-image {
    width: 100%;
    height: 200px;
    background-color: #1a4d3a;
    border-radius: 10px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #00ff00;
}

/* Grid Layouts */
.grid {
    display: grid;
    gap: 30px;
}

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

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

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

/* Course Header Layout */
.course-header {
    text-align: center;
    margin-bottom: 60px;
}

.course-image-centered {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.course-info {
    max-width: 800px;
    margin: 0 auto;
}

/* Course Cards */
.course-card {
    background-color: #2d6b4f;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.course-card:hover {
    border-color: #00ff00;
    transform: translateY(-5px);
}

.course-image {
    width: 100%;
    height: 200px;
    background-color: #1a4d3a;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 2px solid #00ff00;
}

.course-content {
    padding: 25px;
}

.course-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 15px;
    color: #00ff00;
    text-transform: uppercase;
}

.course-description {
    color: #e0e0e0;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

/* Form Styles */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    background-color: #2d6b4f;
    border: 2px solid #00ff00;
    border-radius: 8px;
    color: #ffffff;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #a0a0a0;
}

/* Footer Styles */
.footer {
    background-color: #1a4d3a;
    padding: 60px 0 20px;
    border-top: 2px solid #00ff00;
}

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

.footer-section h3,
.footer-section h4 {
    color: #00ff00;
    margin-bottom: 20px;
    text-transform: uppercase;
}

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

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

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

.footer-section a:hover {
    color: #00ff00;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #2d6b4f;
    color: #a0a0a0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #1a4d3a;
        flex-direction: column;
        padding: 20px;
        border-top: 2px solid #00ff00;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .hero p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2rem;
        padding-top: 40px;
    }
    
    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }
    
    .container {
        padding: 0 15px;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .hero {
        padding: 80px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        padding-top: 40px;
    }
    
    .card {
        padding: 20px;
    }
    
    .btn {
        padding: 12px 25px;
        font-size: 0.9rem;
    }
    
    /* Mobile button spacing */
    .text-center .btn + .btn {
        margin-top: 15px;
    }
}

@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        padding-top: 40px;
    }
    
    .card {
        padding: 15px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    
    /* Mobile button spacing */
    .text-center .btn + .btn {
        margin-top: 12px;
    }
    
    /* Cookie Banner Mobile */
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        margin-bottom: 10px;
    }
    
    /* Course Header Mobile */
    .course-header {
        margin-bottom: 40px;
    }
    
    .course-image-centered {
        margin-bottom: 30px;
    }
    
    .course-info {
        max-width: 100%;
    }
    
    /* Mobile button spacing */
    .text-center .btn + .btn {
        margin-top: 20px;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a4d3a;
    border-top: 3px solid #00ff00;
    padding: 20px 0;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    opacity: 1;
    transition: opacity 0.3s ease;
    transform: translateY(0);
    animation: slideUp 0.5s ease;
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

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

.cookie-text h4 {
    color: #00ff00;
    font-size: 1.2rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.cookie-text p {
    color: #e0e0e0;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    max-width: 600px;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

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

.btn-outline {
    background-color: transparent;
    color: #e0e0e0;
    border: 2px solid #e0e0e0;
}

.btn-outline:hover {
    background-color: #e0e0e0;
    color: #1a4d3a;
}

/* Contact Info Styles */
.contact-info {
    margin-top: 30px;
}

.contact-info h4 {
    color: #00ff00;
    margin-bottom: 10px;
    margin-top: 20px;
    text-transform: uppercase;
    font-size: 1rem;
}

.contact-info h4:first-child {
    margin-top: 0;
}

.contact-info p {
    color: #e0e0e0;
    margin-bottom: 15px;
}

/* FAQ Styles */
.faq-item {
    margin-bottom: 20px;
}

.faq-question {
    color: #00ff00;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.faq-answer {
    color: #e0e0e0;
    margin-left: 20px;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

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

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-20 {
    margin-top: 20px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}
