:root {
    --primary-color: #e20e96;
    --secondary-color: #FF6B35;
    --dark-1: #282828;
    --dark-2: #666666;
    --dark-3: #8A95AD;
    --bg-light: #F8F9FA;
    --white: #FFFFFF;
    --border-radius: 16px;
    --border-radius-sm: 12px;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

body {
    font-family: 'Roboto', sans-serif;
    color: var(--dark-1);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    border-radius: var(--border-radius-sm);
    padding: 12px 32px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #c00b7f;
    border-color: #c00b7f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.header-main {
    padding: 12px 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.nav-link {
    color: var(--dark-1);
    font-weight: 400;
    padding: 8px 16px;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.hero-section {
    padding-top: 100px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.hero-bg {
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    z-index: 0;
    opacity: 0.15;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-section h1 {
    color: var(--dark-1);
    line-height: 1.2;
}

.hero-section .lead {
    color: var(--dark-2);
    font-size: 1.1rem;
}

.hero-features .feature-item {
    font-size: 1.1rem;
}

.hero-features .material-icons-outlined {
    font-size: 28px;
}

.decorative-circle {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(226, 14, 150, 0.1), rgba(255, 107, 53, 0.1));
    z-index: 0;
}

.circle-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.circle-2 {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -80px;
}

.info-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid rgba(226, 14, 150, 0.1);
}

.info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.info-card .card-icon {
    color: var(--primary-color);
    font-size: 36px;
    margin-bottom: 16px;
}

.process-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.process-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.process-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 20px;
}

.custom-list {
    list-style: none;
    padding-left: 0;
}

.custom-list li {
    padding-left: 32px;
    position: relative;
    margin-bottom: 16px;
    color: var(--dark-2);
}

.custom-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 8px;
    height: 8px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.format-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.format-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.format-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.approach-card {
    background: var(--white);
    padding: 40px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-top: 4px solid var(--primary-color);
}

.approach-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.approach-icon {
    display: inline-flex;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, rgba(226, 14, 150, 0.1), rgba(255, 107, 53, 0.1));
    border-radius: 50%;
    align-items: center;
    justify-content: center;
}

.approach-icon .material-icons-outlined {
    font-size: 42px;
    color: var(--primary-color);
}

.course-preview-card {
    background: var(--white);
    padding: 32px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border-left: 4px solid var(--primary-color);
}

.course-preview-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    border-left-color: var(--secondary-color);
}

.accordion-item {
    border: none;
    background: var(--white);
    margin-bottom: 12px;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.accordion-button {
    background: var(--white);
    color: var(--dark-1);
    font-weight: 500;
    border: none;
    padding: 20px 24px;
}

.accordion-button:not(.collapsed) {
    background: var(--white);
    color: var(--primary-color);
    box-shadow: none;
}

.accordion-button:focus {
    box-shadow: none;
    border: none;
}

.accordion-body {
    padding: 20px 24px;
    color: var(--dark-2);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 48px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.form-label {
    font-weight: 500;
    color: var(--dark-1);
    margin-bottom: 8px;
}

.form-control {
    border: 2px solid #e9ecef;
    border-radius: var(--border-radius-sm);
    padding: 12px 16px;
    transition: all 0.2s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(226, 14, 150, 0.15);
}

.footer {
    background-color: var(--dark-1);
}

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

.footer-links a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-contacts li {
    display: flex;
    align-items: center;
    color: #b8b8b8;
    margin-bottom: 12px;
}

.footer-contacts .material-icons-outlined {
    font-size: 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-1);
    color: var(--white);
    padding: 24px;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

.cookie-banner.show {
    display: block;
}

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

.cookie-content p {
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: var(--primary-color);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.page-hero .subtitle {
    font-size: 1.25rem;
    color: var(--dark-2);
}

.course-card {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    height: 100%;
}

.course-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

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

.course-card-body {
    padding: 28px;
}

.course-level {
    display: inline-block;
    background: linear-gradient(135deg, rgba(226, 14, 150, 0.1), rgba(255, 107, 53, 0.1));
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.thank-you-card {
    background: var(--white);
    padding: 60px 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.thank-you-icon .material-icons-outlined {
    font-size: 60px;
    color: var(--white);
}

.service-page {
    padding: 140px 0 60px;
}

.service-content {
    max-width: 900px;
    margin: 0 auto;
}

.service-content h2 {
    font-size: 1.75rem;
    margin-top: 40px;
    margin-bottom: 20px;
}

.service-content p {
    margin-bottom: 16px;
    color: var(--dark-2);
}

.service-content ol,
.service-content ul {
    margin-bottom: 24px;
}

.service-content li {
    margin-bottom: 12px;
    color: var(--dark-2);
}

.contact-info-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
}

.contact-item {
    display: flex;
    align-items: start;
    margin-bottom: 24px;
}

.contact-item .material-icons-outlined {
    font-size: 28px;
    color: var(--primary-color);
    margin-right: 16px;
}

.map-wrapper {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.map-wrapper iframe {
    width: 100%;
    height: 400px;
    border: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        padding: 20px 0;
    }
    
    .nav-link {
        padding: 12px 0;
    }
    
    .hero-section {
        padding-top: 80px;
    }
    
    .hero-bg {
        width: 100%;
        opacity: 0.08;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hero-section h1 {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        padding: 32px 24px;
    }
    
    .page-hero h1 {
        font-size: 2rem;
    }
    
    .thank-you-card {
        padding: 40px 24px;
    }
}

