:root {
    --bg-color: #0D1B2A;
    --primary-color: #1B263B;
    --accent-color: #415A77;
    --additional-color: #778DA9;
    --text-color: #E0E1DD;
    --soft-accent: #1E2A38;
    --contrast-element: #3D5A80;
    --transition-default: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-slow: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-default: 0 5px 15px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.4);
    --glow-effect: 0 0 15px rgba(65, 90, 119, 0.6);
}

/* Reset y estilos generales */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

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

body.menu-open {
    overflow: hidden;
}

body.menu-open .header {
    background-color: var(--bg-color);
}

a {
    text-decoration: none;
    color: var(--text-color);
    transition: var(--transition-default);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* 
==================================================
UTILIDADES
================================================== 
*/
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

/* Botones */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: var(--transition-default);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: none;
    font-size: 1rem;
    z-index: 1;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transition: var(--transition-default);
    z-index: -1;
}

.btn:hover::before {
    left: 0;
}

.btn-primary {
    background-color: var(--accent-color);
    color: var(--text-color);
}

.btn-primary:hover {
    background-color: var(--contrast-element);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--accent-color);
    color: var(--text-color);
}

.btn-secondary:hover {
    background-color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    background-color: transparent;
    border: 1px solid var(--additional-color);
    color: var(--text-color);
    padding: 8px 20px;
}

.btn-outline:hover {
    background-color: var(--soft-accent);
    border-color: var(--accent-color);
    transform: translateY(-2px);
}

.btn-cta {
    background: linear-gradient(45deg, var(--accent-color), var(--contrast-element));
    color: var(--text-color);
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 6px;
    box-shadow: var(--shadow-default);
}

.btn-cta:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

/* 
==================================================
HEADER Y NAVEGACIÓN
================================================== 
*/
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(13, 27, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: var(--transition-default);
    border-bottom: 1px solid rgba(65, 90, 119, 0.2);
}

.header.scrolled {
    padding: 5px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    transition: var(--transition-default);
}

.logo {
    z-index: 101;
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    width: 40px;
    height: auto;
    margin-right: 5px;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo-text .accent {
    color: var(--accent-color);
    -webkit-text-fill-color: var(--accent-color);
    position: relative;
}

.logo-text .accent::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    transform: scaleX(0);
    transition: var(--transition-default);
    transform-origin: right;
}

.logo:hover .logo-text .accent::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-menu {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    transform: none !important;
}

.nav-item {
    margin: 0 10px;
    position: relative;
}

.nav-link {
    font-weight: 500;
    padding: 6px 12px;
    position: relative;
    color: var(--text-color);
    transition: var(--transition-default);
    border-radius: 4px;
    font-size: 0.95rem;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--contrast-element));
    opacity: 0;
    transition: var(--transition-default);
    z-index: -1;
    transform: scale(0.8);
}

.nav-link:hover {
    color: var(--text-color);
    transform: translateY(-2px);
    text-shadow: 0 0 8px rgba(224, 225, 221, 0.3);
}

.nav-link:hover::before {
    opacity: 0.2;
    transform: scale(1);
}

.nav-item.active .nav-link::before {
    opacity: 0.2;
    transform: scale(1);
}

.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
}

.dropdown-toggle::after {
    content: '';
    display: inline-block;
    margin-left: 8px;
    border-top: 5px solid var(--text-color);
    border-right: 5px solid transparent;
    border-left: 5px solid transparent;
    transition: var(--transition-fast);
}

.dropdown:hover .dropdown-toggle::after {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 200px;
    background-color: var(--primary-color);
    border-radius: 4px;
    box-shadow: var(--shadow-default);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition-default);
    z-index: 100;
    padding: 10px 0;
    border: 1px solid var(--soft-accent);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu a {
    padding: 10px 20px;
    display: block;
    font-weight: 400;
    color: var(--text-color);
    transition: var(--transition-fast);
}

.dropdown-menu a:hover {
    background-color: var(--soft-accent);
    padding-left: 25px;
}

/* Мобильная навигация */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    width: 30px;
    height: 30px;
    position: relative;
    z-index: 1001;
    outline: none;
}

.hamburger {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    pointer-events: none;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-color);
    transition: var(--transition-default);
    transform-origin: center;
}

@media (max-width: 992px) {
    .navbar {
        justify-content: space-between;
        padding: 15px 0;
    }

    .menu-toggle {
        display: block;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background-color: var(--bg-color);
        padding: 80px 20px 20px;
        transition: var(--transition-default);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        z-index: 1000;
        overflow-y: auto;
    }

    .nav-menu.active {
        right: 0;
    }

    .menu-toggle.active .hamburger span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .menu-toggle.active .hamburger span:nth-child(2) {
        opacity: 0;
    }

    .menu-toggle.active .hamburger span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .nav-item {
        margin: 15px 0;
        opacity: 0;
        transform: translateX(50px);
        transition: var(--transition-default);
    }

    .nav-menu.active .nav-item {
        opacity: 1;
        transform: translateX(0);
    }

    .nav-item:nth-child(1) { transition-delay: 0.1s; }
    .nav-item:nth-child(2) { transition-delay: 0.2s; }
    .nav-item:nth-child(3) { transition-delay: 0.3s; }
    .nav-item:nth-child(4) { transition-delay: 0.4s; }

    .nav-link {
        font-size: 1.2rem;
        padding: 10px 20px;
        display: block;
    }
}

@media (max-width: 768px) {
    .menu-toggle {
        width: 25px;
        height: 25px;
    }

    .hamburger {
        gap: 5px;
    }
}

@media (max-width: 576px) {
    .menu-toggle {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .methodology-content {
        flex-direction: column;
    }
    
    .methodology-image {
        width: 100%;
        margin-bottom: 40px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn {
        width: 100%;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .courses-grid {
        grid-template-columns: 1fr;
    }
    
    .course-tabs {
        overflow-x: auto;
        padding-bottom: 10px;
        justify-content: flex-start;
    }
    
    .methodology-steps {
        gap: 20px;
    }
    
    .step {
        flex-direction: column;
        gap: 10px;
    }
    
    .step-number {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .footer-logo .logo-text {
        font-size: 1.8rem;
    }
    
    .feature-card {
        padding: 20px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
    }
    
    .testimonial-author {
        flex-direction: column;
        text-align: center;
        padding-left: 0;
    }
    
    .author-image {
        margin-bottom: 10px;
    }
    
    .author-info {
        margin-left: 0;
    }
    
    .policy-content,
    .terms-content,
    .cookies-content {
        padding: 20px;
    }
    
    .cookie-banner {
        flex-direction: column;
        padding: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .cookie-text {
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-actions .btn {
        flex: 1;
        text-align: center;
    }
    
    .team-member,
    .client-logo {
        transform: none !important;
    }
    
    .highlight-box {
        padding: 15px;
    }
    
    .cookies-section table {
        display: block;
        overflow-x: auto;
    }
}

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

/* Instructores Section */
.instructors {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.instructors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.instructor-card {
    background: var(--bg-white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.instructor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.instructor-image {
    position: relative;
    overflow: hidden;
    padding-top: 100%;
}

.instructor-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.instructor-card:hover .instructor-image img {
    transform: scale(1.05);
}

.instructor-social {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    display: flex;
    gap: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.instructor-card:hover .instructor-social {
    opacity: 1;
    transform: translateY(0);
}

.social-link {
    color: var(--text-white);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.social-link:hover {
    color: var(--accent-color);
}

.instructor-content {
    padding: 25px;
}

.instructor-content h3 {
    font-size: 1.4rem;
    margin-bottom: 5px;
    color: var(--text-dark);
}

.instructor-title {
    color: var(--accent-color);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
}

.instructor-bio {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.instructor-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.instructor-expertise span {
    background: var(--bg-light);
    color: var(--text-dark);
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

@media (max-width: 768px) {
    .instructors-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

    .instructor-content {
        padding: 20px;
    }

    .instructor-content h3 {
        font-size: 1.2rem;
    }
}

/* Ventajas Section */
.advantages {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--soft-accent), transparent);
    opacity: 0.5;
    z-index: 1;
}

.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.advantage-card {
    background: var(--bg-color);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition-default);
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-default);
}

.advantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), transparent);
    opacity: 0;
    transition: var(--transition-default);
    z-index: -1;
}

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

.advantage-card:hover::before {
    opacity: 0.1;
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: var(--soft-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-default);
    position: relative;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, var(--accent-color), var(--contrast-element));
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-default);
    z-index: -1;
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.1);
}

.advantage-card:hover .advantage-icon::before {
    opacity: 0.2;
}

.advantage-icon i {
    font-size: 2rem;
    color: var(--accent-color);
    transition: var(--transition-default);
}

.advantage-card:hover .advantage-icon i {
    transform: scale(1.1);
    color: var(--text-color);
}

.advantage-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.advantage-card h3::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent-color);
    transition: var(--transition-default);
}

.advantage-card:hover h3::after {
    width: 50%;
}

.advantage-card p {
    color: var(--additional-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .advantages-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }

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

    .advantage-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 20px;
    }

    .advantage-icon i {
        font-size: 1.5rem;
    }

    .advantage-card h3 {
        font-size: 1.2rem;
    }
}

/* Methodology Section Styles */
.methodology {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.methodology::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(65, 90, 119, 0.1) 0%, rgba(29, 53, 87, 0.1) 100%);
    z-index: 1;
}

.methodology-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.methodology-image {
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-default);
    transition: var(--transition-default);
}

.methodology-image:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.methodology-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-default);
}

.methodology-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(13, 27, 42, 0.2), rgba(13, 27, 42, 0.6));
}

.methodology-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--soft-accent);
    border-radius: 8px;
    transition: var(--transition-default);
    position: relative;
    overflow: hidden;
}

.step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--accent-color);
    transition: var(--transition-default);
}

.step:hover {
    transform: translateX(10px);
    background: var(--contrast-element);
}

.step:hover::before {
    width: 6px;
    background: linear-gradient(to bottom, var(--accent-color), var(--additional-color));
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    min-width: 50px;
    text-align: center;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.step-content p {
    color: var(--text-color);
    opacity: 0.9;
    line-height: 1.6;
}

@media (max-width: 992px) {
    .methodology-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .methodology-image {
        max-height: 400px;
    }
}

@media (max-width: 768px) {
    .methodology-steps {
        gap: 20px;
    }

    .step {
        padding: 15px;
    }

    .step-number {
        font-size: 1.75rem;
        min-width: 40px;
    }

    .step-content h3 {
        font-size: 1.1rem;
    }
}

/* Courses Section Styles */
.courses {
    background-color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.courses::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(65, 90, 119, 0.1) 0%, rgba(29, 53, 87, 0.1) 100%);
    z-index: 1;
}

.courses-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    position: relative;
    z-index: 2;
}

.course-card {
    background: var(--soft-accent);
    border-radius: 12px;
    overflow: hidden;
    transition: var(--transition-default);
    position: relative;
    box-shadow: var(--shadow-default);
    display: flex;
    flex-direction: column;
}

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

.course-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.course-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-default);
}

.course-card:hover .course-image img {
    transform: scale(1.1);
}

.course-level {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: var(--shadow-default);
}

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

.course-tags {
    display: flex;
    gap: 10px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.course-tags span {
    background: var(--contrast-element);
    color: var(--text-color);
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 0.8rem;
    font-weight: 500;
}

.course-content h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--text-color);
    line-height: 1.4;
}

.course-content p {
    color: var(--text-color);
    opacity: 0.9;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1;
}

.course-details {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    padding: 15px;
    background: var(--primary-color);
    border-radius: 8px;
    border: 1px solid rgba(65, 90, 119, 0.2);
    transition: var(--transition-default);
}

.course-card:hover .course-details {
    border-color: var(--accent-color);
    background: var(--contrast-element);
    transform: translateY(-2px);
}

.detail {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: relative;
    padding-left: 15px;
}

.detail:first-child::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 70%;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
}

.detail-label {
    font-size: 0.8rem;
    color: var(--additional-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 500;
}

.detail-value {
    font-size: 1rem;
    color: var(--text-color);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
}

.detail-value::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.course-card .btn-outline {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-weight: 600;
    transition: var(--transition-default);
}

.course-card .btn-outline:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-3px);
}

@media (max-width: 992px) {
    .courses-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .course-content {
        padding: 20px;
    }

    .course-content h3 {
        font-size: 1.2rem;
    }

    .course-details {
        gap: 15px;
    }

    .course-image {
        height: 180px;
    }
}

@media (max-width: 576px) {
    .courses-grid {
        grid-template-columns: 1fr;
    }

    .course-card {
        max-width: 400px;
        margin: 0 auto;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--primary-color);
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--accent-color);
}

.cookie-text {
    flex: 1;
    padding-right: 20px;
}

.cookie-text p {
    margin: 0;
    color: var(--text-color);
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 10px;
}

.cookie-actions .btn {
    white-space: nowrap;
}

@media (max-width: 576px) {
    .cookie-banner {
        flex-direction: column;
        padding: 15px;
        left: 15px;
        right: 15px;
        bottom: 15px;
    }
    
    .cookie-text {
        padding-right: 0;
        margin-bottom: 15px;
    }
    
    .cookie-actions {
        width: 100%;
    }
    
    .cookie-actions .btn {
        flex: 1;
        text-align: center;
    }
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    color: #fff;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.4) 100%);
}

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

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

.hero-title {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: linear-gradient(45deg, #4a90e2, #6c5ce7);
    color: #fff;
    border: none;
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

.gradient-text {
    background: linear-gradient(45deg, #4a90e2, #6c5ce7);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}

/* Footer Styles */
.footer {
    background-color: var(--primary-color);
    padding: 60px 0 20px;
    position: relative;
    margin-top: 60px;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

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

.footer-logo .logo-text {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-logo p {
    color: var(--text-color);
    opacity: 0.8;
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.footer-column h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-column ul li a {
    color: var(--text-color);
    opacity: 0.8;
    transition: var(--transition-default);
    position: relative;
    padding-left: 0;
}

.footer-column ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
    padding-left: 10px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-contact h3 {
    color: var(--text-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-contact h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--accent-color);
}

.footer-contact ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact ul li {
    display: flex;
    flex-direction: column;
    gap: 5px;
    color: var(--text-color);
    opacity: 0.8;
}

.footer-contact ul li span {
    font-weight: 600;
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--soft-accent);
}

.footer-bottom p {
    color: var(--text-color);
    opacity: 0.7;
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-links {
        grid-column: span 2;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-links {
        grid-column: span 1;
        grid-template-columns: 1fr;
    }
    
    .footer {
        padding: 40px 0 20px;
    }
}

/* Animation for footer links */
.footer-column ul li a {
    position: relative;
    display: inline-block;
}

.footer-column ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 1px;
    bottom: -2px;
    left: 0;
    background-color: var(--accent-color);
    transition: var(--transition-default);
}

.footer-column ul li a:hover::after {
    width: 100%;
}

/* CTA Section Styles */
.cta.section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--primary-color) 100%);
    color: var(--text-color);
    position: relative;
    overflow: hidden;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.cta.section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(13, 27, 42, 0.95) 0%, rgba(29, 53, 87, 0.9) 100%);
    z-index: 1;
}

.cta-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 60px;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.cta-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    background: linear-gradient(45deg, var(--text-color), var(--additional-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta-description {
    font-size: 1.25rem;
    line-height: 1.6;
    color: var(--additional-color);
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    border-radius: 8px;
    transition: var(--transition-default);
}

.btn-primary {
    background: linear-gradient(45deg, var(--accent-color), var(--contrast-element));
    border: none;
    color: var(--text-color);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-outline {
    border: 2px solid var(--accent-color);
    color: var(--text-color);
    background: transparent;
}

.btn-outline:hover {
    background: var(--soft-accent);
    transform: translateY(-2px);
}

.cta-stats {
    display: flex;
    gap: 60px;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 40px;
    border-top: 1px solid var(--soft-accent);
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--additional-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 768px) {
    .cta-title {
        font-size: 2.5rem;
    }
    
    .cta-description {
        font-size: 1.1rem;
    }
    
    .cta-stats {
        gap: 40px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, var(--bg-color) 0%, var(--primary-color) 100%);
    padding: 100px 0 60px;
    position: relative;
    overflow: hidden;
    background-image: url('bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(13, 27, 42, 0.9) 0%, rgba(29, 53, 87, 0.85) 100%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), var(--contrast-element));
    border-radius: 2px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--additional-color);
}

.breadcrumbs a {
    color: var(--text-color);
    transition: var(--transition-default);
}

.breadcrumbs a:hover {
    color: var(--accent-color);
}

.breadcrumbs .separator {
    color: var(--accent-color);
    opacity: 0.5;
}

.breadcrumbs .current {
    color: var(--accent-color);
}

/* Animation classes */
.animate-fadeInUp {
    animation: fadeInUp 0.8s ease forwards;
}

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

.text-shimmer {
    background: linear-gradient(90deg, 
        var(--text-color) 0%, 
        var(--accent-color) 50%, 
        var(--text-color) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shimmer 3s linear infinite;
}

@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@media (max-width: 768px) {
    .page-header {
        padding: 80px 0 40px;
    }
    
    .page-title {
        font-size: 2.5rem;
    }
    
    .breadcrumbs {
        font-size: 0.9rem;
    }
}

/* About Us Page Styles */
.page-section {
    padding: 60px 0;
    position: relative;
}

.page-section:first-child {
    padding-top: 10px;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
    display: inline-block;
    text-align: center;
    width: 100%;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
}

.page-section h3 {
    font-size: 1.5rem;
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    text-align: center;
    position: relative;
    padding-bottom: 0.8rem;
}

.page-section h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
}

.page-section p {
    color: var(--additional-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .page-section {
        padding: 60px 0;
    }

    .page-section:first-child {
        padding-top: 100px;
    }

    .section-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }

    .page-section h3 {
        font-size: 1.3rem;
        margin-bottom: 1.2rem;
    }
}

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

.team-member {
    background: var(--primary-color);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.25);
    transition: transform 0.3s cubic-bezier(0.25,0.46,0.45,0.94), box-shadow 0.3s cubic-bezier(0.25,0.46,0.45,0.94);
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.team-member:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 10px 32px rgba(0,0,0,0.35);
}

.member-image {
    width: 100%;
    aspect-ratio: 1/1.1;
    position: relative;
    overflow: hidden;
    background: var(--soft-accent);
    display: flex;
    align-items: center;
    justify-content: center;
}
.member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.team-member:hover .member-image img {
    transform: scale(1.07);
}
.member-info {
    padding: 24px 20px 20px 20px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.member-info h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
    color: var(--text-color);
    font-weight: 700;
}
.member-info p {
    font-size: 0.97rem;
    color: var(--additional-color);
    margin-bottom: 10px;
}
.member-info p:first-of-type {
    color: var(--accent-color);
    font-size: 0.92rem;
    margin-bottom: 14px;
    font-weight: 600;
}
@media (max-width: 600px) {
    .team-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }
    .member-info {
        padding: 16px 10px 14px 10px;
    }
}

.clients-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
    position: relative;
}

.clients-grid::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    opacity: 0.3;
}

.client-logo {
    background: var(--primary-color);
    height: 180px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.client-logo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        rgba(65, 90, 119, 0.1) 0%,
        rgba(29, 53, 87, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.client-logo::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), var(--contrast-element));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.client-logo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
    border-color: var(--accent-color);
}

.client-logo:hover::before {
    opacity: 1;
}

.client-logo:hover::after {
    transform: scaleX(1);
}

.client-logo img {
    max-width: 70%;
    max-height: 70%;
    object-fit: contain;
    filter: grayscale(100%) brightness(1.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.client-logo:hover img {
    filter: grayscale(0%) brightness(1);
    transform: scale(1.1);
}

/* Добавляем анимированный фон */
.client-logo .bg-animation {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, 
        var(--accent-color) 0%,
        var(--contrast-element) 50%,
        var(--accent-color) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.client-logo:hover .bg-animation {
    opacity: 0.05;
}

@media (max-width: 768px) {
    .clients-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        margin-top: 30px;
    }
    
    .client-logo {
        height: 150px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .clients-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .client-logo {
        height: 120px;
        padding: 15px;
    }
}

/* About Page Specific Styles */
.about-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 30px;
}

.about-col {
    flex: 1;
    min-width: 300px;
    background-color: var(--primary-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-image-container {
    margin-bottom: 20px;
    border-radius: 8px;
    overflow: hidden;
    height: 250px;
}

.about-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-list {
    list-style: none;
    margin-top: 15px;
}

.about-list-item {
    margin-bottom: 10px;
    position: relative;
    padding-left: 25px;
}

.about-list-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 10px;
    height: 10px;
    background-color: var(--accent-color);
    border-radius: 50%;
}

/* Methodology Steps Styles */
.methodology-steps {
    margin-top: 40px;
}

.methodology-step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    background-color: var(--primary-color);
    padding: 25px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.step-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-color);
    opacity: 0.7;
    line-height: 1;
}

.step-content {
    flex: 1;
}

.step-content h3 {
    margin-bottom: 10px;
    font-size: 1.3rem;
}

/* CTA Box Styles */
.cta-box {
    background-color: var(--primary-color);
    padding: 60px;
    border-radius: 8px;
    text-align: center;
    margin-top: 60px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.cta-box::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--accent-color), var(--contrast-element));
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(30px);
}

.cta-box::after {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--accent-color), var(--contrast-element));
    border-radius: 50%;
    opacity: 0.1;
    filter: blur(30px);
}

.cta-box h2 {
    font-size: 2rem;
    margin-bottom: 20px;
}

.cta-box p {
    max-width: 700px;
    margin: 0 auto 30px;
    color: var(--additional-color);
    font-size: 1.1rem;
}

.cta-box .btn-cta {
    display: inline-block;
    background: linear-gradient(45deg, var(--accent-color), var(--contrast-element));
    color: var(--text-color);
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cta-box .btn-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .about-col {
        min-width: 100%;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
    
    .cta-box p {
        font-size: 1rem;
    }
}

/* Cookie Consent Styles */
.cookie-consent {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

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

.cookie-text {
    flex: 1;
}

.cookie-text h3 {
    color: #333;
    margin: 0 0 10px 0;
    font-size: 1.2rem;
}

.cookie-text p {
    color: #666;
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}

/* Legal Pages Text Styles */
.policy-content,
.terms-content,
.cookies-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
    color: var(--text-color);
}

.policy-section,
.terms-section,
.cookies-section {
    margin-bottom: 40px;
    background: var(--primary-color);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow-default);
    transition: var(--transition-default);
}

.policy-section:hover,
.terms-section:hover,
.cookies-section:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.policy-section h3,
.terms-section h3,
.cookies-section h3 {
    color: var(--accent-color);
    font-size: 1.5rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--soft-accent);
}

.policy-section p,
.terms-section p,
.cookies-section p {
    color: var(--additional-color);
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 1rem;
}

.policy-section ul,
.terms-section ul,
.cookies-section ul {
    list-style: none;
    padding-left: 20px;
    margin-bottom: 20px;
}

.policy-section ul li,
.terms-section ul li,
.cookies-section ul li {
    color: var(--additional-color);
    margin-bottom: 12px;
    position: relative;
    padding-left: 25px;
    line-height: 1.6;
}

.policy-section ul li::before,
.terms-section ul li::before,
.cookies-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    background: var(--accent-color);
    border-radius: 50%;
}

.policy-section strong,
.terms-section strong,
.cookies-section strong {
    color: var(--text-color);
    font-weight: 600;
}

.policy-section table,
.cookies-section table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background: var(--soft-accent);
    border-radius: 8px;
    overflow: hidden;
}

.policy-section table th,
.cookies-section table th {
    background: var(--accent-color);
    color: var(--text-color);
    padding: 15px;
    text-align: left;
    font-weight: 600;
}

.policy-section table td,
.cookies-section table td {
    padding: 12px 15px;
    color: var(--additional-color);
    border-bottom: 1px solid var(--soft-accent);
}

.policy-section table tr:last-child td {
    border-bottom: none;
}

.highlight-box {
    background: var(--soft-accent);
    padding: 20px;
    border-radius: 8px;
    margin: 15px 0;
    border-left: 4px solid var(--accent-color);
}

.highlight-box p {
    margin: 0;
    color: var(--text-color);
}

.action-link {
    color: var(--accent-color);
    text-decoration: none;
    transition: var(--transition-default);
    position: relative;
}

.action-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--accent-color);
    transition: var(--transition-default);
}

.action-link:hover {
    color: var(--text-color);
}

.action-link:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .policy-content,
    .terms-content,
    .cookies-content {
        padding: 20px 15px;
    }

    .policy-section,
    .terms-section,
    .cookies-section {
        padding: 20px;
    }

    .policy-section h3,
    .terms-section h3,
    .cookies-section h3 {
        font-size: 1.3rem;
    }

    .policy-section table,
    .cookies-section table {
        display: block;
        overflow-x: auto;
    }
}

