* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e74c3c;
    --accent-color: #3498db;
    --text-color: #333;
    --light-bg: #f8f9fa;
    --white: #ffffff;
    --dark: #1a1a1a;
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

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

.main-header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navigation-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-section img {
    border-radius: 50%;
    object-fit: cover;
}

.brand-name {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    font-size: 24px;
    cursor: pointer;
}

.hero-section {
    position: relative;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--white);
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.neon-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    transition: var(--transition);
    animation: fadeInUp 1s ease 0.4s backwards;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.neon-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.features-section,
.about-preview-section,
.consultation-form-section,
.blog-preview-section,
.about-story-section,
.team-section,
.values-section,
.cta-section,
.courses-section,
.process-section,
.testimonials-section,
.blog-main-section,
.contact-main-section,
.map-section {
    padding: 80px 0;
}

.section-title {
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.feature-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-description {
    color: #666;
    line-height: 1.8;
}

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

.about-preview-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-text {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
}

.benefits-list {
    list-style: none;
    margin-bottom: 30px;
}

.benefits-list li {
    padding: 12px 0;
    display: flex;
    align-items: center;
    gap: 15px;
    color: #555;
}

.benefits-list i {
    color: var(--secondary-color);
    font-size: 20px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: var(--accent-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    transition: var(--transition);
    font-weight: 600;
}

.cta-button:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.consultation-form-section {
    background: var(--light-bg);
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.form-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}

.lead-form,
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    transition: var(--transition);
    font-family: inherit;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.blog-grid,
.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.blog-card,
.blog-post-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.blog-card:hover,
.blog-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.blog-card img,
.blog-post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.blog-card-content,
.blog-post-content {
    padding: 25px;
}

.blog-post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 14px;
    color: #999;
}

.blog-post-category {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
}

.blog-card-title,
.blog-post-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.blog-card-excerpt,
.blog-post-excerpt {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.read-more,
.read-more-btn {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.read-more:hover,
.read-more-btn:hover {
    gap: 12px;
}

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

.main-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 0 20px;
}

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

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-text {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 15px;
}

.company-reg {
    color: #bbb;
    font-size: 14px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-contacts {
    list-style: none;
}

.footer-contacts li {
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    color: #ddd;
}

.footer-contacts i {
    color: var(--secondary-color);
    margin-top: 4px;
}

.footer-contacts a {
    color: #ddd;
    text-decoration: none;
    transition: var(--transition);
}

.footer-contacts a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #bbb;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 25px 20px;
    z-index: 9999;
    transform: translateY(100%);
    transition: var(--transition);
}

.cookie-banner.show {
    transform: translateY(0);
}

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

.cookie-text h4 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.cookie-text p {
    color: #666;
    font-size: 14px;
}

.cookie-text a {
    color: var(--accent-color);
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.accept-btn {
    background: var(--secondary-color);
    color: var(--white);
}

.accept-btn:hover {
    background: #c0392b;
}

.decline-btn {
    background: #eee;
    color: var(--text-color);
}

.decline-btn:hover {
    background: #ddd;
}

.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.modal-overlay.show {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: var(--white);
    border-radius: 15px;
    max-width: 500px;
    width: 90%;
    overflow: hidden;
    transform: scale(0.8);
    transition: var(--transition);
}

.modal-overlay.show .modal-content {
    transform: scale(1);
}

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

.modal-header h3 {
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #999;
    transition: var(--transition);
}

.modal-close:hover {
    color: var(--text-color);
}

.modal-body {
    padding: 40px 30px;
    text-align: center;
}

.modal-icon {
    font-size: 64px;
    color: #27ae60;
    margin-bottom: 20px;
}

.page-hero {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 100px 0 60px;
    text-align: center;
}

.page-hero-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-hero-subtitle {
    font-size: 20px;
    opacity: 0.9;
}

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

.about-story-text {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.about-story-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.team-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.team-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.team-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
    font-size: 22px;
}

.team-position {
    padding: 0 20px;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 15px;
}

.team-bio {
    padding: 0 20px 25px;
    color: #666;
    line-height: 1.6;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 30px;
}

.value-icon {
    font-size: 48px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.value-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-description {
    color: #666;
    line-height: 1.8;
}

.cta-section {
    background: var(--gradient-secondary);
    color: var(--white);
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: 42px;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.courses-grid {
    display: grid;
    gap: 50px;
}

.course-card {
    background: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 400px 1fr;
    transition: var(--transition);
}

.course-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.course-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
}

.course-title {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.course-description {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
}

.course-features {
    list-style: none;
    margin-bottom: 30px;
}

.course-features li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #555;
}

.course-features i {
    color: var(--secondary-color);
}

.course-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.course-duration {
    color: #999;
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-button {
    padding: 12px 30px;
    background: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
}

.course-button:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.process-step {
    text-align: center;
    position: relative;
}

.process-number {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: bold;
    margin: 0 auto 25px;
}

.process-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.process-description {
    color: #666;
    line-height: 1.8;
}

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

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.testimonial-text {
    color: #555;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: #999;
    font-size: 14px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-info-content h3 {
    color: var(--primary-color);
    margin-bottom: 8px;
}

.contact-info-content p {
    color: #666;
    line-height: 1.6;
}

.contact-info-content a {
    color: var(--accent-color);
    text-decoration: none;
}

.company-info {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #eee;
    color: #999;
    font-size: 14px;
}

.map-placeholder {
    background: var(--light-bg);
    padding: 80px 40px;
    border-radius: 15px;
    text-align: center;
}

.map-placeholder p {
    color: #666;
    margin-bottom: 15px;
    font-size: 18px;
}

.blog-post-page {
    padding: 60px 0;
}

.post-header {
    max-width: 900px;
    margin: 0 auto 50px;
}

.post-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    color: #999;
}

.post-date {
    display: flex;
    align-items: center;
    gap: 8px;
}

.post-title {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 30px;
    line-height: 1.2;
}

.post-featured-image {
    width: 100%;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.post-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.9;
    color: #444;
}

.post-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin: 50px 0 25px;
}

.post-content p {
    margin-bottom: 25px;
}

.post-footer {
    max-width: 800px;
    margin: 60px auto 0;
    padding-top: 40px;
    border-top: 2px solid #eee;
}

.back-to-blog {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.back-to-blog:hover {
    gap: 15px;
}

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

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        padding: 20px;
        box-shadow: var(--shadow);
        transition: var(--transition);
        gap: 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-toggle {
        display: block;
    }
    
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .about-preview-grid,
    .about-story-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .course-card {
        grid-template-columns: 1fr;
    }
    
    .course-image {
        height: 250px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .page-hero-title {
        font-size: 36px;
    }
    
    .post-title {
        font-size: 32px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 28px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .form-wrapper {
        padding: 30px 20px;
    }
}