/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Ubuntu', sans-serif;
    line-height: 1.6;
    color: #ffffff;
    background-color: #1a1d3a;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3561;
    padding: 20px;
    z-index: 1000;
    border-top: 1px solid #3a4373;
    display: block;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content h3 {
    color: #ffffff;
    margin-bottom: 10px;
    font-size: 1.2em;
    font-weight: 500;
}

.cookie-content p {
    margin-bottom: 20px;
    color: #b8c2e8;
    font-size: 0.9em;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 500;
    text-align: center;
    cursor: pointer;
    border: none;
    font-family: inherit;
    font-size: 0.9em;
    transition: all 0.3s ease;
}

.btn-green {
    background: #4CAF50;
    color: white;
}

.btn-green:hover {
    background: #45a049;
}

.btn-outline {
    background: transparent;
    color: #4CAF50;
    border: 2px solid #4CAF50;
}

.btn-outline:hover {
    background: #4CAF50;
    color: white;
}

.btn-full {
    width: 100%;
}

/* Header */
.header {
    background: #1a1d3a;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #3a4373;
}

.navbar {
    position: relative;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-logo a {
    font-size: 1.5em;
    font-weight: 700;
    color: #4CAF50;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    gap: 2rem;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-weight: 400;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #4CAF50;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: #1a1d3a;
}

.hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero h1 {
    font-size: 2.5em;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero p {
    margin-bottom: 30px;
    color: #b8c2e8;
    font-size: 1.1em;
}

.hero-features {
    margin-bottom: 30px;
}

.hero-features h3 {
    margin-bottom: 15px;
    color: #ffffff;
    font-size: 1.2em;
}

.hero-features ul {
    list-style: none;
    padding-left: 0;
}

.hero-features li {
    margin-bottom: 8px;
    color: #b8c2e8;
    position: relative;
    padding-left: 20px;
}

.hero-features li:before {
    content: "•";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Courses Advantages Section */
.courses-advantages {
    padding: 80px 0;
    background: #f8f9fa;
    color: #333;
}

.courses-advantages h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1d3a;
}

.courses-advantages > p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.chart-container {
    margin: 50px 0;
    text-align: center;
}

.chart-container img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.features-grid {
    margin-top: 50px;
}

.feature-item h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #1a1d3a;
    text-align: center;
}

.feature-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}

.feature-column h4 {
    margin-bottom: 15px;
    color: #1a1d3a;
    font-size: 1.2em;
}

.feature-column p {
    color: #666;
    line-height: 1.6;
}

.cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Our Courses Section */
.our-courses {
    padding: 80px 0;
    background: #1a1d3a;
}

.our-courses h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
}

.our-courses > p {
    text-align: center;
    margin-bottom: 50px;
    color: #b8c2e8;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.course-card {
    background: #2d3561;
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid #3a4373;
}

.course-header {
    background: #4CAF50;
    padding: 20px;
    text-align: center;
}

.course-header h3 {
    color: white;
    font-size: 1.3em;
    font-weight: 500;
}

.course-content {
    padding: 25px;
}

.course-content > p {
    color: #b8c2e8;
    margin-bottom: 25px;
    line-height: 1.6;
}

.course-details h4 {
    color: #ffffff;
    margin-bottom: 15px;
    font-size: 1.1em;
}

.course-details ul {
    list-style: none;
    margin-bottom: 25px;
}

.course-details li {
    color: #b8c2e8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.course-details li:before {
    content: "•";
    color: #4CAF50;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.course-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.course-info p {
    color: #b8c2e8;
    line-height: 1.5;
}

.course-info strong {
    color: #ffffff;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #f8f9fa;
    color: #333;
}

.team-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1d3a;
}

.team-section > p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.values-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 60px;
    align-items: center;
}

.values-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.values-content h3 {
    font-size: 1.8em;
    margin-bottom: 25px;
    color: #1a1d3a;
}

.value-item {
    margin-bottom: 25px;
}

.value-item h4 {
    margin-bottom: 10px;
    color: #1a1d3a;
    font-size: 1.2em;
}

.value-item p {
    color: #666;
    line-height: 1.6;
}

.team-members h3 {
    font-size: 1.8em;
    margin-bottom: 30px;
    color: #1a1d3a;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.team-member {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.member-image img {
    width: 100%;
    object-fit: cover;
}

.member-info {
    padding: 25px;
}

.member-info h4 {
    margin-bottom: 15px;
    color: #1a1d3a;
    font-size: 1.3em;
}

.member-info p {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: #1a1d3a;
}

.testimonials h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
}

.testimonials > p {
    text-align: center;
    margin-bottom: 50px;
    color: #b8c2e8;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.testimonial-card {
    background: #2d3561;
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #3a4373;
}

.testimonial-content p {
    color: #b8c2e8;
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.6;
}

.testimonial-author {
    color: #ffffff;
    font-weight: 500;
}

.testimonial-approach {
    background: #2d3561;
    padding: 30px;
    border-radius: 10px;
    border: 1px solid #3a4373;
    margin-bottom: 30px;
}

.testimonial-approach h3 {
    color: #ffffff;
    margin-bottom: 20px;
    font-size: 1.5em;
}

.testimonial-approach p {
    color: #b8c2e8;
    line-height: 1.6;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
    background: #f8f9fa;
    color: #333;
}

.blog-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #1a1d3a;
}

.blog-section > p {
    text-align: center;
    margin-bottom: 50px;
    color: #666;
    font-size: 1.1em;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.blog-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.blog-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-content {
    padding: 25px;
}

.blog-content h3 {
    margin-bottom: 15px;
    color: #1a1d3a;
    font-size: 1.3em;
}

.blog-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background: #1a1d3a;
}

.contact-section h2 {
    font-size: 2.2em;
    margin-bottom: 20px;
    text-align: center;
    color: #ffffff;
}

.contact-section > p {
    text-align: center;
    margin-bottom: 50px;
    color: #b8c2e8;
    font-size: 1.1em;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffffff;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #3a4373;
    border-radius: 5px;
    background: #2d3561;
    color: #ffffff;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: #0f1229;
    padding: 40px 0;
    border-top: 1px solid #3a4373;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-info h3 {
    color: #4CAF50;
    margin-bottom: 10px;
    font-size: 1.2em;
}

.footer-info p {
    color: #b8c2e8;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.footer-links {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #b8c2e8;
    text-decoration: none;
    font-size: 0.9em;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #4CAF50;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1d3a;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        border-top: 1px solid #3a4373;
    }

    .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(-8px) rotate(-45deg);
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .hero h1 {
        font-size: 2em;
    }

    .feature-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .course-info {
        grid-template-columns: 1fr;
    }

    .values-section {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .blog-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-links {
        justify-content: center;
    }

    .cookie-buttons {
        flex-direction: column;
    }

    .cookie-buttons .btn {
        width: 100%;
    }
}

.text-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 120px 0;
}

.text-section h2 {
    font-family: Ubuntu;
    font-weight: 700;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-transform: uppercase;
    color: #FFF;
}

.text-section p {
    font-family: Ubuntu;
    font-weight: 400;
    font-size: 18px;
    line-height: 140%;
    letter-spacing: 0%;
    vertical-align: middle;
    color: #FFF;
}