:root {
    --primary: #4A90E2; /* Soft blue - unchanged */
    --primary-light: #A4C8E1; /* Light blue - unchanged */
    --primary-dark: #003D66; /* Darker blue - unchanged */
    --accent: #FF7D47; /* Softer orange - less saturated */
    --accent-light: #FFA07D; /* Lighter, less intense orange */
    --accent-dark: #D45C2F; /* Darker, more muted orange */
    --text: #333333; /* Dark gray for text */
    --text-light: #555555; /* Medium gray for secondary text */
    --background: #F4F4F4; /* Light gray background */
    --card-bg: #FFFFFF; /* White for cards */
    --border: #E2E8F0; /* Light border */
    --success: #48BB78; /* Green for success messages */
    --warning: #ED8936; /* Orange for warnings */
    --error: #F56565; /* Red for errors */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);

}

body {
    font-family: 'Manrope', sans-serif;
    color: var(--text);
    background-color: var(--background);
    line-height: 1.6;
    margin: 0;
    padding: 0;
}

/* Contact Info Hover Effects */
.contact-info {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 8px;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.05);
}

.contact-info:hover {
    color: white;
    transform: translateX(5px) scale(1.05);
    background: rgba(255, 255, 255, 0.1);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-info i {
    color: var(--accent);
    transition: var(--transition);
    font-size: 1.1em;
}

.contact-info:hover i {
    color: white;
    transform: scale(1.1);
}

.contact-info a,
.contact-info span {
    transition: var(--transition);
}

.contact-info:hover a,
.contact-info:hover span {
    color: white;
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.3);
}

.header-request-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--accent);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.header-request-button:hover {
    background-color: var(--accent-light);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

/* Герой-секция */
.about-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
    color: white;
    padding: 4rem 2rem 6rem;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    position: relative;
    z-index: 2;
}

.hero-text {
    flex: 1;
}

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

.hero-title span {
    position: relative;
}

.hero-title span::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(245, 158, 11, 0.3);
    z-index: -1;
}

.hero-subtitle {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: var(--accent);
    color: white;
    padding: 0.8rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: 0 4px 6px rgba(245, 158, 11, 0.2);
}

.cta-button:hover {
    background-color: var(--accent-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 8px rgba(245, 158, 11, 0.3);
}

.hero-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--transition);
}

.hero-image:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: var(--radius);
}

/* Статистика */
.stats-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin: -3rem auto 0;
    max-width: 1200px;
    position: relative;
    z-index: 3;
}

.stat-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 1.5rem;
    text-align: center;
    min-width: 180px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
    flex: 1;
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
}

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

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.stat-icon {
    color: var(--accent);
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

/* Основной контент */
.about-content {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 4px;
    background: var(--accent);
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 700px;
}

/* Секция миссии */
.mission-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin: 4rem 0;
}

.mission-content {
    flex: 1;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: var(--text);
}

.mission-highlight {
    background: rgba(37, 99, 235, 0.05);
    border-left: 4px solid var(--accent);
    padding: 1.5rem;
    border-radius: 0 var(--radius) var(--radius) 0;
    position: relative;
}

.mission-highlight i {
    color: var(--accent);
    font-size: 1.5rem;
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 10px;
}

.mission-highlight p {
    margin: 0;
    padding-left: 2rem;
    font-style: italic;
    color: var(--text);
    font-weight: 500;
}

.mission-image {
    flex: 1;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.mission-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition);
}

.mission-image:hover img {
    transform: scale(1.03);
}

/* Ценности */
.values-section {
    margin: 6rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-top: 4px solid var(--primary);
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.value-card:nth-child(1) { transition-delay: 0.1s; }
.value-card:nth-child(2) { transition-delay: 0.2s; }
.value-card:nth-child(3) { transition-delay: 0.3s; }

.value-card:hover {
    transform: translateY(-10px) !important;
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 30px;
    height: 30px;
    fill: var(--primary);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* История компании */
.history-section {
    margin: 6rem 0;
}

.timeline {
    position: relative;
    max-width: 1000px;
    margin: 4rem auto;
    padding-left: 1rem;
}

.timeline-progress {
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--primary-light);
    border-radius: 2px;
}

.timeline-item {
    position: relative;
    padding-left: 4rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.timeline-item::before {
    content: '';
    position: absolute;
    left: 26px;
    top: 5px;
    width: 16px;
    height: 16px;
    background: var(--card-bg);
    border: 4px solid var(--accent);
    border-radius: 50%;
    z-index: 1;
}

.timeline-date {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}

.timeline-date::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 2px;
    background: var(--accent);
    margin-right: 10px;
}

.timeline-content {
    background: var(--card-bg);
    padding: 1.5rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.timeline-content h3 {
    color: var(--primary-dark);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

/* Адаптивность */
@media (min-width: 768px) {
    .hero-content {
        flex-direction: row;
        align-items: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .mission-section {
        flex-direction: row;
        align-items: center;
    }
    
    .mission-text {
        font-size: 1.2rem;
    }
}

@media (max-width: 767px) {
    .stat-card {
        min-width: calc(50% - 1rem);
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
/* Footer */
.footer {
    background-color: #2D3748;
    color: white;
    padding: 20px 0;
    position: relative;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.footer-about {
    max-width: 350px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo img {
    height: 40px;
    width: auto;
}

.footer-logo span {
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.footer-about-text {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 15px;
    font-size: 0.95rem;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    font-size: 1rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background-color: var(--accent);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(255, 107, 53, 0.3);
}

.footer-links h3 {
    font-size: 1.1rem;
    color: white;
    margin: 0 0 15px;
    position: relative;
    padding-bottom: 10px;
}

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

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
    display: inline-block;
    padding: 3px 0;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

.footer-contacts .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contacts .contact-item i {
    color: var(--accent);
    font-size: 1.1rem;
    margin-top: 3px;
}

.footer-contacts .contact-item a:hover {
    color: white;
    text-decoration: underline;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.copyright {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    transition: var(--transition);
}

.footer-legal a:hover {
    color: white;
    text-decoration: underline;
}

/* Стили для блока лицензий */
.footer-legal {
    display: flex;
    flex-wrap: wrap;
    align-items: left;
    gap: 15px;
}

.licenses-list {
    margin-top: 10px; /* Отступ сверху для списка лицензий */
}

.licenses-list a {
    display: block; /* Каждая лицензия будет на новой строке */
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.licenses-list a:hover {
    color: white;
    text-decoration: underline;
}

.licenses-links {
    display: flex;
    align-items: left;
    flex-direction: column;
    margin-top: 10px;
    color: rgba(255, 255, 255, 0.7);
    gap: 5px;
    flex-wrap: wrap;
}

.licenses-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.licenses-links a:hover {
    color: #4a90e2;
    text-decoration: underline;
}
/* Стили для навигации */
.svn-navbar {
    background: linear-gradient(135deg, rgba(0, 61, 102, 0.9), rgba(0, 61, 102, 0.98));
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.svn-navbar.scrolled {
    background: linear-gradient(135deg, rgba(0, 61, 102, 1), rgba(0, 61, 102, 1));
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.navbar-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    transition: transform 0.3s ease;
}

.navbar-logo:hover {
    transform: scale(1.1);
}

.navbar-logo i {
    font-size: 2rem;
    color: var(--accent);
}

.navbar-logo span {
    font-weight: 700;
    color: white;
    font-size: 1.4rem;
    letter-spacing: 0.5px;
}

.navbar-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.navbar-links {
    display: flex;
    gap: 25px;
    align-items: center;
}

.navbar-links a {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    transition: all 0.3s ease;
}

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

.navbar-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: var(--accent);
    transition: all 0.3s ease;
}

.navbar-links a:hover::after {
    width: 100%;
}

.navbar-actions {
    display: flex;
    gap: 15px;
}

.navbar-button {
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.navbar-button.primary {
    background-color: var(--accent);
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.navbar-button.primary:hover {
    background-color: var(--accent-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

.navbar-button.secondary {
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.navbar-button.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}
a{
text-decoration:none;
}
.mobile-menu-button {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.mobile-menu-button:hover {
    transform: rotate(90deg);
}

/* Медиазапросы для мобильной версии */
@media (max-width: 768px) {
    .navbar-menu {
        display: none;
        flex-direction: column;
        background-color: rgba(0, 61, 102, 0.95);
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        padding: 20px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
        border-radius: 0 0 10px 10px;
    }

    .navbar-menu.active {
        display: flex;
    }

    .mobile-menu-buton {
        display: block;
    }
}