/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 2rem;
}

h3 {
    font-size: 1.8rem;
    font-weight: 600;
    text-transform: uppercase;
}

p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
    letter-spacing: 1px;
}

.btn-primary {
    background: #f4c430;
    color: #000;
    font-size: 16px;
}

.btn-primary:hover {
    background: #e6b82a;
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: #333;
    border: 2px solid #333;
}

.btn-secondary:hover {
    background: #333;
    color: #fff;
}

.btn-tertiary {
    background: transparent;
    color: #666;
    border: 1px solid #666;
}

.btn-tertiary:hover {
    background: #666;
    color: #fff;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-content {
    background: #fff;
    padding: 40px;
    max-width: 800px;
    width: 100%;
    border-radius: 8px;
}

.cookie-content h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.cookie-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
}

.cookie-content li {
    margin-bottom: 5px;
    color: #666;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cookie-buttons .btn {
    padding: 12px 20px;
    font-size: 14px;
}

.cookie-consent.hidden {
    display: none;
}

/* Header */
.header {
    background: rgba(30, 30, 30, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    color: #FFCD19;
font-family: Oswald;
font-size: 24px;
font-style: normal;
font-weight: 300;
line-height: normal;
}

.logo-img {
    height: 40px;
    width: auto;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 40px;
    margin: 0;
    padding: 0;
}

.nav-list a {
    color: #fff;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
    letter-spacing: 1px;
}

.nav-list a:hover {
    color: #f4c430;
}

/* Burger Menu */
.burger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 20px;
    justify-content: space-between;
}

.burger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #fff;
    transition: all 0.3s ease;
}

.burger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.burger.active span:nth-child(2) {
    opacity: 0;
}

.burger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* Hero Section */
.hero {
    background:  url('../images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    text-align: center;
    padding-top: 80px;
}

.hero-content h1 {
    color: #fff;
    margin-bottom: 30px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 40px;
    opacity: 0.9;
}

/* About Section */
.about {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text h2 {
    color: #333;
    margin-bottom: 30px;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 20px;
}

.about-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Investment Directions Section */
.investment-directions {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.75)), url('../images/investment-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #fff;
}

.investment-directions h2 {
    text-align: left;
    color: #fff;
    margin-bottom: 25px;
    font-size: 2.8rem;
    font-weight: 600;
    line-height: 1.2;
    font-family: 'Oswald', sans-serif;
}

.section-intro {
    text-align: left;
    max-width: none;
    margin: 0 0 40px 0;
    font-size: 1rem;
    line-height: 1.6;
    color: #fff;
    font-weight: 400;
}

.investment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: none;
    margin: 0;
}

.investment-card {
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 25px;
    border-radius: 0;
    backdrop-filter: blur(5px);
    transition: all 0.3s ease;
}

.investment-card:hover {
    background: rgba(0, 0, 0, 0.5);
    border-color: rgba(255, 255, 255, 0.2);
}

.investment-card h3 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 15px;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: 'Oswald', sans-serif;
}

.investment-card p {
    color: #fff;
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0;
    font-weight: 400;
}

/* Courses Section */
.courses {
    padding: 80px 0;
     background-image: url(../images/bcg.png);
    background-position: center;
    background-size: cover;
}

.courses h2 {
    text-align: left;
    color: #333;
    margin-bottom: 50px;
    font-size: 2.2rem;
    font-weight: 600;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
    max-width: none;
    margin: 0;
}

.course-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    padding: 25px;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.course-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.course-header {
    margin-bottom: 15px;
}

.course-header h3 {
    color: #333;
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.3;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.course-details {
    margin-bottom: 15px;
}

.course-details p {
    color: #666;
    font-size: 0.8rem;
    margin-bottom: 3px;
    line-height: 1.4;
}

.course-card > p {
    color: #666;
    font-size: 0.85rem;
    line-height: 1.5;
    flex-grow: 1;
    margin-bottom: 20px;
}

.course-footer {
    margin-top: auto;
}

.course-price {
    color: #333;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.course-price span {
    color: #333;
    font-weight: 700;
    font-size: 1.3rem;
}

.course-footer .btn {
    width: 100%;
    text-align: center;
    padding: 12px 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.courses-additional {
    padding-top: 60px;
    color: #fff;
}

.additional-courses {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin: 20px 0;
}

.additional-course {
    border: 1px solid #6B6B6B;
background: #1C1C1C;
padding: 24px;
width: 100%;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
   
}

.faq h2 {
    text-align: center;
    color: #333;
    margin-bottom: 60px;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #fff;
    margin-bottom: 20px;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #f4c430;
}

.faq-item h3 {
    color: #333;
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.faq-item p {
    color: #666;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    background-image: url(../images/cont.png);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    color: #fff;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact h2 {
    color: #fff;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    color: #ecf0f1;
}

.contact-item img {
    width: 20px;
    height: 20px;
    filter: brightness(0) invert(1);
}

.contact-form {
    background: rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px;
    font-family: 'Open Sans', sans-serif;
    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: #f4c430;
}

/* Footer */
.footer {
    background: #1a1a1a;
    padding: 40px 0;
    color: #fff;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    transition: color 0.3s ease;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #f4c430;
}

.footer-copyright p {
    color: #999;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        padding: 0 30px;
    }
    
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.2rem;
    }
    
    .about-content {
        gap: 40px;
    }
    
    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* Navigation */
    .burger {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: rgba(30, 30, 30, 0.98);
        transition: left 0.3s ease;
        backdrop-filter: blur(10px);
    }
    
    .nav.active {
        left: 0;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 40px 20px;
        gap: 20px;
        height: 100%;
    }
    
    .nav-list a {
        font-size: 1.2rem;
        padding: 15px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    /* Typography */
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    /* Hero */
    .hero-content p {
        font-size: 1.1rem;
    }
    
    /* About */
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    /* Investment Directions & Courses */
    .investment-grid,
    .courses-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .investment-directions {
        background-attachment: scroll;
        padding: 70px 0;
    }
    
    .investment-directions h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 25px;
    }
    
    .section-intro {
        font-size: 0.95rem;
        margin-bottom: 35px;
        text-align: center;
    }
    
    .courses {
        padding: 70px 0;
    }
    
    .courses h2 {
        font-size: 1.8rem;
        text-align: center;
        margin-bottom: 40px;
    }
    
    .investment-card,
    .course-card {
        padding: 20px;
    }
    
    .investment-card h3,
    .course-header h3 {
        font-size: 1rem;
    }
    
    .investment-card p,
    .course-card > p {
        font-size: 0.9rem;
    }
    
    .course-details p {
        font-size: 0.8rem;
    }
    
    .course-footer .btn {
        font-size: 0.8rem;
        padding: 10px 15px;
    }

    .additional-courses {
        flex-direction: column;
    }
    
    /* Contact */
    .contact-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form {
        padding: 30px;
    }
    
    /* Footer */
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 20px;
    }
    
    /* Cookie Consent */
    .cookie-content {
        padding: 30px;
        margin: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .cookie-buttons .btn {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
    
    h1 {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    h2 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding-top: 70px;
        text-align: center;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 14px;
    }
    
    .btn-large {
        padding: 15px 30px;
        font-size: 16px;
    }
    
    .course-card,
    .faq-item {
        padding: 20px;
    }
    
    .contact-form {
        padding: 20px;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 12px;
    }
    
    .cookie-content {
        padding: 20px;
        margin: 10px;
    }
    
    .cookie-content h3 {
        font-size: 1.3rem;
    }
    
    .investment-directions h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }
    
    .courses h2 {
        font-size: 1.6rem;
    }
    
    .section-intro {
        font-size: 0.9rem;
        margin-bottom: 30px;
    }
    
    .investment-card,
    .course-card {
        padding: 18px;
    }
    
    .investment-card h3,
    .course-header h3 {
        font-size: 0.95rem;
        line-height: 1.4;
    }
    
    .investment-card p,
    .course-card > p {
        font-size: 0.85rem;
    }
    
    .course-details p {
        font-size: 0.75rem;
    }
    
    .course-price {
        font-size: 0.85rem;
    }
    
    .course-price span {
        font-size: 1.2rem;
    }
    
    .course-footer .btn {
        font-size: 0.75rem;
        padding: 10px 12px;
    }
    
    .courses,
    .about,
    .faq,
    .contact,
    .investment-directions {
        padding: 50px 0;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* Smooth scrolling offset for fixed header */
section {
    scroll-margin-top: 80px;
}

/* Loading and transitions */
* {
    transition: all 0.3s ease;
}

/* Focus styles for accessibility */
button:focus,
input:focus,
textarea:focus,
a:focus {
    outline: 2px solid #f4c430;
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .header,
    .burger,
    .cookie-consent {
        display: none;
    }
    
    * {
        background: transparent !important;
        color: black !important;
    }
}

              .page {
                padding: 80px 0;
              }
              
              .page__inner {
                padding-top: 40px;
                width: 100%;
                margin: 0 auto;
                display: flex;
                  flex-direction: column;
                  row-gap: 18px;
                  line-height: 1.4;
              }

              .page__inner p {
                padding-bottom: 10px;
                padding-top: 8px;
              }

              .page__inner strong {
                font-weight: 600;
              }

              .page__inner ul {
                padding-left: 20px;
                list-style-type: disc;
              }

              .thank {
                padding-top: 140px;
                padding-bottom: 140px;
                display: flex;
                flex-direction: column;
                align-items: center;
                gap: 40px;
                text-align: center;
              }

              .thank-list {
                width: 100%;
                max-width: 1200px;
                margin: 0 auto 40px;
                display: flex;
                flex-direction: column;
                padding: 40px 24px;
                color: #121212;
                background: #E1E0DA;
              }

              .consent {
                border-radius: 10px;
                  background: #F5F5F5;
                    padding: 30px;
                    display: flex;
                    flex-direction: column;
                    justify-content: space-between;
                    gap: 15px;
                    max-width: 830px;
                    width: 95%;
                    position: fixed;
                    left: 10%;
                    bottom: 50px;
                    transform: translateX(-10%);
                    z-index: 21;
                 
                   
                }

               
                
                .consent__text {
                  font-size: 14px;
                  color: #131313;
                  span {
                    display: block;
                    font-size: 30px;
                    text-transform: uppercase;
                  }
                }
                
                .consent__buttons {
                  display: flex;
                 
                  gap: 30px;
                  align-items: center;
                  width: 100%;
                 
                }       
                
                @media (max-width: 900px) {
                  .consent {
                    left: 50%;
                    transform: translateX(-50%);
                  }
                  .consent__buttons {
                    justify-content: center;
                    flex-direction: column;
                  }
                }

                .button {
                  position: relative;
                  align-self: center;
                  display: flex;
                  align-items: center;
                  justify-content: center;
                  text-decoration: none;
                  border: none;
                  border-radius: 20px;
                 
                  max-width: 400px;
                  min-height: 48px;
                  padding: 0 24px;
                  font-family:
                    Roboto,
                    -apple-system,
                    Roboto,
                    Helvetica,
                    sans-serif;
                  font-size: 18px;
                  font-weight: 700;
                  color: rgba(255, 255, 255, 1);
                  white-space: nowrap;
                  text-transform: uppercase;
                  cursor: pointer;
                }

                