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

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

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

/* Cookie Popup */
.cookie-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(31, 79, 205, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.cookie-popup.show {
    opacity: 1;
    visibility: visible;
}

.cookie-content {
    background: #1F4FCD;
    color: white;
    padding: 40px;
    max-width: 800px;
    text-align: center;
    border: 3px dotted rgba(255, 255, 255, 0.3);
    margin: 20px;
}

.cookie-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.cookie-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.8;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-accept,
.btn-learn {
    padding: 12px 30px;
    font-size: 1rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background: white;
    color: #1F4FCD;
}

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

.btn-accept:hover,
.btn-learn:hover {
    opacity: 0.8;
    transform: translateY(-2px);
}

/* Header */
.header {
    background: #f8f9fa;
    padding: 15px 0;
    border-bottom: 1px solid #e9ecef;
}

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

.logo {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
}

.btn-primary {
    background: #1F4FCD;
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-full {
    width: 100%;
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.hero-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.2;
}

.hero-description {
    margin-bottom: 30px;
}

.hero-description p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
}

.hero-description strong {
    color: #333;
}

.btn-secondary {
    background: transparent;
    color: #1F4FCD;
    padding: 12px 24px;
    text-decoration: none;
    border: 2px solid #1F4FCD;
    font-weight: 500;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-secondary:hover {
    background: #1F4FCD;
    color: white;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

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

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

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

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
}

.feature-icon.blue {
    background: #1F4FCD;
}

.feature-icon.blue::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 24px;
    height: 24px;
    background: white;
    border-radius: 50%;
}

.feature-item h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
}

.feature-item p {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
}

/* Investment Section */
.investment {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.investment-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.investment-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 30px;
}

.btn-link {
    color: #1F4FCD;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #1F4FCD;
    transition: all 0.3s ease;
}

.btn-link:hover {
    color: #1a42b8;
    border-color: #1a42b8;
}

.investment-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Courses Section */
.courses {
    padding: 80px 0;
    background: white;
}

.courses h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 50px;
    text-align: left;
}

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

.course-card {
    padding: 40px 30px;
    border-radius: 8px;
    color: white;
    position: relative;
    min-height: 300px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.course-card.bg-first {
background: url(../img/img-3.png) no-repeat center/cover;
}
.course-card.bg-second {
background: url(../img/img-4.png) no-repeat center/cover;
}

.course-card.bg-three {
background: url(../img/img-4.png) no-repeat center/cover;
}
.course-card.bg-four {
background: url(../img/img-5.png) no-repeat center/cover;
}



.course-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    line-height: 1.3;
}

.course-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 30px;
    opacity: 0.9;
}

.course-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.course-info span {
    font-size: 0.9rem;
    opacity: 0.8;
}

.price {
    font-weight: 600;
    font-size: 1rem !important;
    opacity: 1 !important;
}

/* Consultation Section */
.consultation {
    padding: 80px 0;
    background: #f8f9fa;
}

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

.consultation-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 25px;
    line-height: 1.3;
}

.consultation-text p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.consultation-points {
    margin-top: 30px;
}

.consultation-points p {
    margin-bottom: 15px;
}

.consultation-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.testimonial {
    text-align: left;
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 15px;
}

.testimonial p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    font-style: italic;
}

/* Form Section */
.form-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.form-section h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
    text-align: center;
}

.form-section > .container > p {
    font-size: 1rem;
    color: #666;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.contact-form {
    max-width: 500px;
    margin: 0 auto;
}

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

.form-group input {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: 'Roboto', sans-serif;
}

.form-group input:focus {
    outline: none;
    border-color: #1F4FCD;
}

/* Footer */
.footer {
    background: #f8f9fa;
    padding: 30px 0;
    border-top: 1px solid #e9ecef;
}

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

.footer-content p {
    color: #666;
    font-size: 0.9rem;
}

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

.footer-links a {
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #1F4FCD;
}

/* Thank You Page Styles */
.thank-you {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.thank-you-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    text-align: center;
}

.thank-you-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    line-height: 1.3;
    max-width: 800px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content,
    .investment-content,
    .consultation-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .investment-text h2,
    .consultation-text h2,
    .courses h2,
    .form-section h2 {
        font-size: 1.8rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .cookie-content {
        padding: 30px 20px;
    }
    
    .cookie-content h2 {
        font-size: 2rem;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
    }
    
    .thank-you-text h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.6rem;
    }
    
    .investment-text h2,
    .consultation-text h2,
    .courses h2,
    .form-section h2 {
        font-size: 1.5rem;
    }
    
    .course-card {
        padding: 30px 20px;
    }
    
    .cookie-content h2 {
        font-size: 1.6rem;
    }
    
    .thank-you-text h2 {
        font-size: 1.6rem;
    }
}

.privacy{
    padding: 60px 0;
}

.privacy-title{
    font-family: Roboto;
font-weight: 700;
font-size: clamp(32px,5vw,39px);
line-height: 120%;
letter-spacing: 0%;
margin-bottom: 20px;

}

.privacy-text{
    font-family: Roboto;
font-weight: 400;
font-size: 16px;
line-height: 100%;
letter-spacing: 0%;

}
