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

body {
    font-family: 'Arial', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

svg {
    max-width: 100%;
}

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

/* Navigation */
.navbar {
    background-color: #111111;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #15ff00;
}

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

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

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

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-link:hover::after,
.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #15ff00;
    animation: slideIn 0.3s ease;
}

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

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

/* Hero Banner */
.hero-banner {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

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

.hero-content {
    text-align: center;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 10px;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    background: linear-gradient(45deg, #15ff00, #ff4d00);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 30px rgba(21, 255, 0, 0.3);
}

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

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: linear-gradient(45deg, #15ff00, #ff4d00);
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 30px;
    transition: all 0.3s ease;
    box-shadow: 0 0 30px rgba(21, 255, 0, 0.3);
}

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

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

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

/* Company Info Section */
.company-info {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

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

.info-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.info-item:hover {
    border-color: #15ff00;
    box-shadow: 0 10px 30px rgba(21, 255, 0, 0.2);
    transform: translateY(-5px);
}

.info-item h3 {
    color: #ff4d00;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

/* Achievements Section */
.achievements {
    padding: 80px 0;
    background-color: #0f0f0f;
}

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

.stat-item {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #1a1a1a, #262626);
    border-radius: 20px;
    border: 2px solid #15ff00;
    box-shadow: 0 0 30px rgba(21, 255, 0, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #15ff00;
    text-shadow: 0 0 20px rgba(21, 255, 0, 0.5);
}

.stat-label {
    font-size: 1.2rem;
    color: #cccccc;
    margin-top: 0.5rem;
}

/* Popular Course Section */
.popular-course {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.course-highlight {
    background-color: #1a1a1a;
    border-radius: 20px;
    padding: 3rem;
    border: 2px solid #ff4d00;
    box-shadow: 0 0 40px rgba(255, 77, 0, 0.2);
}

.course-highlight h3 {
    font-size: 2rem;
    color: #15ff00;
    margin-bottom: 1rem;
}

.course-details {
    margin: 2rem 0;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid #333333;
}

.label {
    color: #cccccc;
    font-weight: 500;
}

.value {
    color: #ffffff;
    font-weight: bold;
}

.original-price {
    text-decoration: line-through;
    color: #888888;
    margin-right: 10px;
}

.discounted-price {
    color: #15ff00;
    font-size: 1.3rem;
    font-weight: bold;
}

.discount-badge {
    background-color: #ff4d00;
    color: #000000;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: bold;
    margin-left: 10px;
}

.course-cta {
    display: inline-block;
    padding: 12px 30px;
    background: linear-gradient(45deg, #15ff00, #ff4d00);
    color: #000000;
    text-decoration: none;
    font-weight: bold;
    border-radius: 25px;
    transition: all 0.3s ease;
}

.course-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(21, 255, 0, 0.4);
}

/* Benefits Section */
.benefits {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

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

.benefit-item h3 {
    color: #15ff00;
    margin: 1rem 0;
    font-size: 1.3rem;
}

/* FAQ Section */
.faq {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #15ff00;
}

.faq-item h3 {
    color: #ff4d00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

/* Newsletter Section */
.newsletter {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    border-top: 2px solid #15ff00;
}

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

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

.subscription-form {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.form-group {
    position: relative;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: #1a1a1a;
    border: 2px solid #333333;
    border-radius: 10px;
    color: #ffffff;
    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: #15ff00;
    box-shadow: 0 0 10px rgba(21, 255, 0, 0.3);
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    color: #cccccc;
    font-weight: 500;
}

.submit-btn {
    padding: 15px 40px;
    background: linear-gradient(45deg, #15ff00, #ff4d00);
    color: #000000;
    border: none;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(21, 255, 0, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 30px rgba(21, 255, 0, 0.5);
}

/* Footer */
footer {
    background-color: #111111;
    padding: 60px 0 20px;
    border-top: 2px solid #15ff00;
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: bold;
    color: #15ff00;
    margin-bottom: 1rem;
}

.footer-section h3 {
    color: #ff4d00;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

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

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

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

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

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

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

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: #cccccc;
}

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

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    border-top: 2px solid #15ff00;
    padding: 1.5rem;
    z-index: 10000;
    display: none;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

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

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

.cookie-btn.primary {
    background: linear-gradient(45deg, #15ff00, #ff4d00);
    color: #000000;
}

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

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

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

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

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #333333;
}

.modal-header h3 {
    color: #15ff00;
    margin: 0;
}

.close-btn {
    background: none;
    border: none;
    color: #ff4d00;
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-body {
    padding: 1.5rem;
}

.cookie-category {
    margin-bottom: 1.5rem;
}

.category-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.5rem;
}

.category-header h4 {
    color: #ffffff;
    margin: 0;
}

.toggle-switch {
    position: relative;
    width: 50px;
    height: 24px;
}

.toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333333;
    transition: .4s;
    border-radius: 24px;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: #15ff00;
}

input:checked + .slider:before {
    transform: translateX(26px);
}

.modal-footer {
    padding: 1.5rem;
    border-top: 1px solid #333333;
    text-align: center;
}

/* Course Pages */
.courses-hero,
.about-hero,
.contact-hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    text-align: center;
}

.courses-hero h1,
.about-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    color: #15ff00;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(21, 255, 0, 0.3);
}

.hero-visual {
    margin-top: 2rem;
}

/* Course Filters */
.course-filters {
    padding: 40px 0;
    background-color: #111111;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 25px;
    background-color: #1a1a1a;
    color: #cccccc;
    border: 2px solid #333333;
    border-radius: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background-color: #15ff00;
    color: #000000;
    border-color: #15ff00;
}

/* Courses Grid */
.courses-grid {
    padding: 60px 0;
    background-color: #0f0f0f;
}

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

.course-card {
    background-color: #1a1a1a;
    border-radius: 15px;
    overflow: hidden;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.course-card:hover {
    border-color: #15ff00;
    box-shadow: 0 10px 30px rgba(21, 255, 0, 0.2);
    transform: translateY(-5px);
}

.course-image {
    width: 100%;
    height: 200px;
    background-color: #000000;
}

.course-content {
    padding: 1.5rem;
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.course-header h3 {
    color: #15ff00;
    font-size: 1.3rem;
    flex: 1;
    margin-right: 1rem;
}

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

.stars {
    color: #ff4d00;
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
}

.star.filled {
    color: #ff4d00;
}

.star {
    color: #333333;
}

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

.course-description {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.course-details {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #cccccc;
    font-size: 0.9rem;
}

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

.current-price {
    font-size: 1.5rem;
    font-weight: bold;
    color: #15ff00;
}

.discount {
    background-color: #ff4d00;
    color: #000000;
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 0.8rem;
    font-weight: bold;
}

.course-btn {
    display: block;
    width: 100%;
    padding: 12px;
    background: linear-gradient(45deg, #15ff00, #ff4d00);
    color: #000000;
    text-decoration: none;
    text-align: center;
    font-weight: bold;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.course-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(21, 255, 0, 0.4);
}

/* Contact Page */
.contact-info-section {
    padding: 80px 0;
    background-color: #0f0f0f;
}

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

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: #15ff00;
    box-shadow: 0 10px 30px rgba(21, 255, 0, 0.1);
}

.contact-text h3 {
    color: #15ff00;
    margin-bottom: 0.5rem;
}

.contact-note {
    color: #888888;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* Contact Form */
.contact-form-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #15ff00;
    box-shadow: 0 0 30px rgba(21, 255, 0, 0.1);
}

.form-header {
    text-align: center;
    margin-bottom: 2rem;
}

.form-header h2 {
    color: #15ff00;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.contact-form {
    display: grid;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    color: #cccccc;
    line-height: 1.4;
}

.checkbox-label input[type="checkbox"] {
    display: none;
}

.checkmark {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 2px solid #15ff00;
    border-radius: 3px;
    position: relative;
    flex-shrink: 0;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background-color: #15ff00;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: -2px;
    left: 3px;
    color: #000000;
    font-weight: bold;
}

.checkbox-label a {
    color: #15ff00;
    text-decoration: underline;
}

/* About Page Specific */
.company-story {
    padding: 80px 0;
    background-color: #0f0f0f;
}

.story-timeline {
    max-width: 800px;
    margin: 0 auto;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: flex-start;
}

.timeline-year {
    background: linear-gradient(45deg, #15ff00, #ff4d00);
    color: #000000;
    padding: 1rem;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.2rem;
    min-width: 80px;
    text-align: center;
}

.timeline-content {
    flex: 1;
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border-left: 4px solid #15ff00;
}

.timeline-content h3 {
    color: #ff4d00;
    margin-bottom: 1rem;
}

/* Instructors */
.instructors {
    padding: 80px 0;
    background: linear-gradient(135deg, #111111 0%, #1a1a1a 100%);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.instructor-card {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.instructor-card:hover {
    border-color: #ff4d00;
    box-shadow: 0 10px 30px rgba(255, 77, 0, 0.2);
    transform: translateY(-5px);
}

.instructor-avatar {
    margin-bottom: 1.5rem;
}

.instructor-card h3 {
    color: #15ff00;
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.instructor-title {
    color: #ff4d00;
    font-weight: bold;
    margin-bottom: 1rem;
}

.instructor-bio {
    color: #cccccc;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.instructor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background-color: #333333;
    color: #15ff00;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    border: 1px solid #15ff00;
}

/* Thank You Page */
.thank-you-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0f0f0f 0%, #1a1a1a 100%);
    text-align: center;
}

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

.success-icon {
    margin-bottom: 2rem;
}

.thank-you-content h1 {
    font-size: 3rem;
    color: #15ff00;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(21, 255, 0, 0.3);
}

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

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

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

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

.step-item {
    text-align: center;
}

.step-item h3 {
    color: #15ff00;
    margin: 1rem 0 0.5rem;
}

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

.btn-primary,
.btn-secondary {
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #15ff00, #ff4d00);
    color: #000000;
}

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

.btn-primary:hover,
.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(21, 255, 0, 0.3);
}

.contact-reminder {
    background-color: #1a1a1a;
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid #ff4d00;
}

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

/* Legal Pages */
.legal-page {
    padding: 100px 0;
    background-color: #0f0f0f;
}

.legal-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #1a1a1a;
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid #15ff00;
}

.legal-content h1 {
    color: #15ff00;
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(21, 255, 0, 0.3);
}

.last-updated {
    color: #888888;
    margin-bottom: 3rem;
    font-style: italic;
}

.legal-content h2 {
    color: #ff4d00;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
}

.legal-content h3 {
    color: #15ff00;
    margin: 1.5rem 0 0.5rem;
    font-size: 1.2rem;
}

.legal-content p {
    color: #cccccc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.legal-content ul {
    color: #cccccc;
    margin-left: 2rem;
    margin-bottom: 1rem;
}

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

/* Partnerships */
.partnerships {
    padding: 60px 0;
    background-color: #111111;
}

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

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

.partner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem;
    background-color: #1a1a1a;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.partner-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(21, 255, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #111111;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        border-top: 2px solid #15ff00;
        padding: 2rem 0;
    }

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

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

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

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

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

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

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

    .timeline-item {
        flex-direction: column;
        gap: 1rem;
    }

    .timeline-year {
        align-self: flex-start;
    }

    .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
    }

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

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

@media (max-width: 480px) {
    .achievement-stats {
        grid-template-columns: 1fr;
    }

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

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

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

    .section-header h2 {
        font-size: 2rem;
    }
    .legal-content {
    padding: 3rem 1rem;}
}

/* Animations */
@keyframes slideIn {
    from {
        width: 0;
    }
    to {
        width: 100%;
    }
}

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

.course-card,
.benefit-item,
.info-item,
.instructor-card {
    animation: fadeIn 0.6s ease forwards;
}

/* Glowing effects */
.hero-content h1 {
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 20px rgba(21, 255, 0, 0.3);
    }
    to {
        text-shadow: 0 0 30px rgba(21, 255, 0, 0.6), 0 0 40px rgba(255, 77, 0, 0.3);
    }
}