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

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: #ff6b35;
    color: white;
}

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

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: #4a90e2;
}

/* Cookies Popup */
.cookies-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #4a90e2;
    color: white;
    padding: 20px 0;
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookies-popup.show {
    transform: translateY(0);
}

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

.cookies-content h3 {
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 600;
}

.cookies-content p {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.5;
}

.cookies-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.cookies-buttons .btn {
    padding: 10px 20px;
    font-size: 14px;
}

/* Header */
.header {
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 999;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    height: 40px;
}

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

.navbar-nav a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    font-size: 16px;
    transition: color 0.3s ease;
}

.navbar-nav a:hover {
    color: #4a90e2;
}

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

.navbar-burger span {
    width: 25px;
    height: 3px;
    background-color: #333;
    transition: 0.3s;
}

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

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

.navbar-burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Hero Section */
.hero {
    background: url('../img/banner.webp') no-repeat center center;
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}



.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Thank You Section */
.thank-you {
    background: url('../img/banner.webp') no-repeat center center;
    color: white;
    padding: 120px 0 80px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.thank-you::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;

    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.thank-you-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    text-align: center;
    margin: 0 auto;
}

.thank-you h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.thank-you p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.about h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.about h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4a90e2;
}

.about p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Competencies Section */
.competencies {
    padding: 80px 0;
    background-color: #4a90e2;
    color: white;
}

.competencies h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 20px;
}

.section-subtitle {
    font-size: 18px;
    text-align: center;
    margin-bottom: 60px;
    opacity: 0.9;
}

.competencies-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.competency-card {
    background-color: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.competency-card h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.competency-card p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
}

/* Philosophy Section */
.philosophy {
    padding: 80px 0;
    background-color: white;
}

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

.philosophy h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

.philosophy h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #4a90e2;
}

.philosophy p {
    font-size: 16px;
    margin-bottom: 20px;
    line-height: 1.6;
    color: #666;
}

.philosophy-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.courses h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #333;
}

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

.course-card {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card:hover {
    transform: translateY(-5px);
}

.course-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 20px;
    color: #333;
}

.course-card p {
    font-size: 14px;
    margin-bottom: 15px;
    line-height: 1.6;
    color: #666;
}

.course-card .btn {
    margin-top: 20px;
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
}

.feature-item {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
}

.feature-image {
    /* flex-shrink: 0;
    width: 80px; */
}

.feature-image img {
    width: 100%;
    border-radius: 10px;
}

.feature-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #333;
}

.feature-content p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

/* Registration Section */
.registration {
    padding: 80px 0;
    background-color: #4a90e2;
    color: white;
}

.registration h2 {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.registration-form {
    max-width: 600px;
    margin: 0 auto;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: white;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 5px;
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

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

.registration-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 18px;
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: #333;
    color: white;
    padding: 40px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: start;
    margin-bottom: 30px;
}

.footer-info h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-info p {
    font-size: 14px;
    margin-bottom: 5px;
    color: #ccc;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: white;
}

.footer-copyright {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555;
}

.footer-copyright p {
    font-size: 12px;
    color: #999;
}

@media (max-width: 992px) {
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 50px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        left: 0;
    }

    .navbar-nav {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .navbar-nav a {
        font-size: 18px;
    }

    .navbar-burger {
        display: flex;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background-color: white;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        transition: left 0.3s ease;
        padding-top: 50px;
        box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    }

    .navbar-menu.active {
        left: 0;
    }

    .navbar-nav {
        flex-direction: column;
        gap: 20px;
    }

    .navbar-nav a {
        font-size: 18px;
    }

    .navbar-burger {
        display: flex;
    }

    .hero h1,
    .thank-you h1 {
        font-size: 36px;
    }

    .hero p,
    .thank-you p {
        font-size: 16px;
    }

    .about-content,
    .philosophy-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-image,
    .philosophy-image {
        order: -1;
    }

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

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

    .feature-item {
        flex-direction: column;
        text-align: center;
    }

    .feature-image {
        width: 100%;
        /* max-width: 200px; */
        margin: 0 auto;
    }

    .cookies-buttons {
        flex-direction: column;
    }

    .cookies-buttons .btn {
        width: 100%;
    }

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

    .footer-links {
        justify-content: center;
    }
}

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

    .hero,
    .thank-you {
        padding: 100px 0 60px;
    }

    .hero h1,
    .thank-you h1 {
        font-size: 28px;
    }

    .about h2,
    .philosophy h2,
    .courses h2,
    .registration h2 {
        font-size: 28px;
    }

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

    .course-card {
        padding: 30px 20px;
    }

    .registration-form {
        padding: 30px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}

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

/* Focus styles for accessibility */
.btn:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #ff6b35;
    outline-offset: 2px;
}

/* Skip link for accessibility */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #ff6b35;
    color: white;
    padding: 8px;
    text-decoration: none;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

.privacy {
    margin: 78px 0 0;
    padding: 60px 0;
}

.privacy-title {
    color: #000100;
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
}

.privacy-txt{
    color: #3E3E3C;
font-family: "Open Sans";
font-size: 18px;
font-weight: 400;
}