:root {
    --primary-color: #1a365d;
    --primary-light: #2c5282;
    --primary-dark: #0d1b2e;
    --secondary-color: #4a5568;
    --accent-color: #3182ce;
    --accent-hover: #2b6cb0;
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --success: #10b981;
    --error: #ef4444;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-700);
    background-color: var(--white);
}

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

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

ul {
    list-style: none;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.logo {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--secondary-color);
    letter-spacing: 2px;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    color: var(--gray-700);
    padding: 8px 0;
    position: relative;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
}

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

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: var(--transition);
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    text-align: center;
}

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

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

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

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

.btn-block {
    width: 100%;
}

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: 70px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(13, 27, 46, 0.92) 0%, rgba(26, 54, 93, 0.85) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    color: var(--white);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
}

.services-preview {
    padding: 100px 0;
    background: var(--gray-50);
}

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

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.service-content {
    padding: 24px;
}

.service-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.service-content p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.about {
    padding: 100px 0;
}

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

.about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 1.05rem;
}

.about-stats {
    display: flex;
    gap: 40px;
    margin-top: 32px;
}

.stat {
    text-align: center;
}

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

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

.why-choose-us {
    padding: 100px 0;
    background: var(--primary-dark);
}

.why-choose-us .section-header h2 {
    color: var(--white);
}

.why-choose-us .section-header p {
    color: var(--gray-300);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    color: var(--accent-color);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--gray-400);
    font-size: 0.95rem;
}

.business-model {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.business-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.business-content > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.business-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.business-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.checkmark {
    width: 28px;
    height: 28px;
    background: var(--accent-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.business-list strong {
    display: block;
    color: var(--primary-color);
    font-size: 1.05rem;
    margin-bottom: 4px;
}

.business-list p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.business-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

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

.contact {
    padding: 100px 0;
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.contact-info > p {
    color: var(--gray-600);
    margin-bottom: 32px;
    font-size: 1.05rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--white);
}

.contact-item strong {
    display: block;
    color: var(--primary-color);
    font-size: 1rem;
    margin-bottom: 4px;
}

.contact-item p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

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

.contact-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
}

.contact-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--gray-200);
    border-radius: 10px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(49, 130, 206, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray-400);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%234b5563'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M19 9l-7 7-7-7'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 20px;
    padding-right: 44px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.checkbox-group input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent-color);
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 0.9rem;
    color: var(--gray-600);
    cursor: pointer;
    line-height: 1.5;
}

.checkbox-group a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.footer {
    background: var(--primary-dark);
    color: var(--white);
    padding: 80px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-section h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-section p {
    color: var(--gray-400);
    font-size: 0.95rem;
    line-height: 1.7;
}

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

.footer-section a {
    color: var(--gray-400);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-section a:hover {
    color: var(--accent-color);
    padding-left: 4px;
}

.footer-address {
    margin-top: 20px;
}

.footer-address p {
    margin-bottom: 8px;
}

.footer-bottom {
    padding: 32px 0;
}

.footer-disclaimer {
    margin-bottom: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-disclaimer p {
    font-size: 0.85rem;
    color: var(--gray-400);
    line-height: 1.6;
}

.footer-copyright p {
    font-size: 0.9rem;
    color: var(--gray-500);
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    padding: 24px 0;
}

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

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

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

.cookie-text p {
    color: var(--gray-600);
    font-size: 0.9rem;
    line-height: 1.6;
}

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

.btn-cookie-accept {
    background: var(--accent-color);
    color: var(--white);
    padding: 12px 24px;
}

.btn-cookie-accept:hover {
    background: var(--accent-hover);
}

.btn-cookie-necessary {
    background: var(--gray-200);
    color: var(--gray-700);
    padding: 12px 24px;
}

.btn-cookie-necessary:hover {
    background: var(--gray-300);
}

.btn-cookie-settings {
    background: transparent;
    color: var(--gray-600);
    padding: 12px 24px;
    border: 2px solid var(--gray-300);
}

.btn-cookie-settings:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cookie-settings-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cookie-settings-modal.active {
    display: flex;
}

.cookie-modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 600px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: var(--shadow-xl);
}

.cookie-modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 32px;
    border-bottom: 1px solid var(--gray-200);
}

.cookie-modal-header h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
}

.modal-close {
    background: none;
    border: none;
    font-size: 28px;
    color: var(--gray-500);
    cursor: pointer;
    line-height: 1;
    transition: var(--transition);
}

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

.cookie-modal-body {
    padding: 32px;
}

.cookie-category {
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.cookie-category:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.cookie-category-header {
    margin-bottom: 12px;
}

.cookie-category-header label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}

.cookie-category-header input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: var(--accent-color);
    cursor: pointer;
}

.cookie-category-header span {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 1.05rem;
}

.cookie-category p {
    color: var(--gray-600);
    font-size: 0.95rem;
    line-height: 1.6;
    padding-left: 32px;
}

.cookie-modal-footer {
    padding: 24px 32px;
    border-top: 1px solid var(--gray-200);
    text-align: right;
}

#save-preferences-btn {
    min-width: 160px;
}

@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        padding: 24px 20px;
        gap: 0;
    }
    
    .nav-link {
        display: block;
        padding: 16px 0;
        border-bottom: 1px solid var(--gray-100);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .mobile-menu-btn.active span:nth-child(1) {
        transform: rotate(45deg) translate(6px, 6px);
    }
    
    .mobile-menu-btn.active span:nth-child(2) {
        opacity: 0;
    }
    
    .mobile-menu-btn.active span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -6px);
    }
    
    .hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.05rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .about-grid,
    .business-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-image img,
    .business-image img {
        height: 280px;
    }
    
    .about-stats {
        justify-content: space-around;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }
    
    .hero h1 {
        font-size: 1.875rem;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .about-content h2,
    .business-content h2,
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .about-stats {
        gap: 20px;
    }
    
    .cookie-modal-content {
        margin: 10px;
    }
    
    .cookie-modal-header,
    .cookie-modal-body,
    .cookie-modal-footer {
        padding: 20px;
    }
}

.hero-page {
    min-height: 50vh;
}

.content-section {
    padding: 100px 0;
    background: var(--gray-50);
}

.hero-page .hero-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.about-section {
    padding: 100px 0;
}

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

.about-section .about-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-section .about-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
}

.about-section .about-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.about-section .about-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

.mission-section {
    padding: 100px 0;
    background: var(--gray-50);
}

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

.mission-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.mission-content p {
    color: var(--gray-600);
    margin-bottom: 20px;
    font-size: 1.05rem;
    line-height: 1.7;
}

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

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

.values-section {
    padding: 100px 0;
    background: var(--primary-dark);
}

.values-section .section-header h2 {
    color: var(--white);
}

.values-section .section-header p {
    color: var(--gray-300);
}

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

.value-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.value-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.value-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 24px;
    color: var(--accent-color);
}

.value-icon svg {
    width: 100%;
    height: 100%;
}

.value-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
}

.value-card p {
    color: var(--gray-400);
    font-size: 1rem;
    line-height: 1.7;
}

.about-stats-section {
    padding: 100px 0;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}

.about-stat {
    padding: 40px 20px;
    background: var(--gray-50);
    border-radius: 16px;
    transition: var(--transition);
}

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

.about-stat .stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--accent-color);
    display: block;
    margin-bottom: 8px;
}

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

.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--gray-300);
    font-size: 1.125rem;
    margin-bottom: 32px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 1024px) {
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-section .about-grid,
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-section .about-image img,
    .mission-image img {
        height: 280px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-stat {
        padding: 24px 16px;
    }
    
    .about-stat .stat-number {
        font-size: 2.25rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .about-section .about-content h2,
    .mission-content h2 {
        font-size: 1.75rem;
    }
    
    .value-card {
        padding: 24px;
    }
    
    .value-card h3 {
        font-size: 1.25rem;
    }
}

.policy-content {
    padding: 100px 0;
    background: var(--white);
}

.policy-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.policy-intro {
    font-size: 1.15rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 24px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: 12px;
    border-left: 4px solid var(--accent-color);
}

.policy-meta {
    margin-bottom: 48px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-200);
}

.policy-meta p {
    color: var(--gray-600);
    font-size: 0.95rem;
}

.policy-section {
    margin-bottom: 48px;
}

.policy-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--gray-200);
}

.policy-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-color);
    margin: 24px 0 16px;
}

.policy-section h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-800);
    margin: 20px 0 12px;
}

.policy-section p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.policy-section ul {
    margin: 16px 0 24px 24px;
    color: var(--gray-600);
}

.policy-section ul li {
    margin-bottom: 12px;
    line-height: 1.7;
    position: relative;
    padding-left: 20px;
}

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

.cookie-type {
    background: var(--gray-50);
    border-radius: 12px;
    padding: 32px;
    margin-bottom: 32px;
    border: 1px solid var(--gray-200);
}

.cookie-type h3 {
    margin-top: 0;
}

.cookie-status {
    margin-bottom: 16px;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-badge.required {
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
}

.status-badge.optional {
    background: rgba(49, 130, 206, 0.1);
    color: var(--accent-color);
}

.cookie-note {
    font-size: 0.9rem;
    color: var(--gray-500);
    font-style: italic;
    padding: 12px 16px;
    background: rgba(49, 130, 206, 0.05);
    border-radius: 8px;
    margin-top: 16px;
}

.cookie-table-wrapper {
    margin-top: 24px;
}

.cookie-table-wrapper h4 {
    margin-bottom: 16px;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 12px;
    background: var(--white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.cookie-table thead {
    background: var(--primary-color);
}

.cookie-table thead th {
    color: var(--white);
    font-weight: 600;
    text-align: left;
    padding: 14px 16px;
    font-size: 0.9rem;
}

.cookie-table tbody td {
    padding: 14px 16px;
    border-bottom: 1px solid var(--gray-200);
    color: var(--gray-600);
    font-size: 0.9rem;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: var(--gray-50);
}

.browser-settings {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 24px 0;
}

.browser-item {
    background: var(--white);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
}

.browser-item h4 {
    margin: 0 0 12px;
    color: var(--primary-color);
}

.browser-item p {
    margin: 0;
    color: var(--gray-600);
    font-size: 0.9rem;
}

.contact-info-box {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--gray-200);
    margin-top: 16px;
}

.contact-info-box p {
    margin-bottom: 8px;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

.contact-info-box a {
    color: var(--accent-color);
    font-weight: 500;
}

.contact-info-box a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .policy-content {
        padding: 60px 0;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
    
    .policy-section h3 {
        font-size: 1.15rem;
    }
    
    .cookie-type {
        padding: 24px;
    }
    
    .browser-settings {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .cookie-table {
        font-size: 0.85rem;
    }
    
    .cookie-table thead th,
    .cookie-table tbody td {
        padding: 10px 12px;
    }
}

@media (max-width: 480px) {
    .policy-intro {
        font-size: 1rem;
        padding: 16px;
    }
    
    .cookie-type {
        padding: 20px;
    }
    
    .cookie-table-wrapper {
        overflow-x: auto;
    }
    
    .cookie-table {
        min-width: 500px;
    }
}

.legal-section {
    padding: 80px 0;
    background: var(--white);
}

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

.legal-content .last-updated {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-200);
}

.legal-block {
    margin-bottom: 40px;
}

.legal-block:last-child {
    margin-bottom: 0;
}

.legal-block h2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.legal-block p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-block ul {
    margin: 16px 0;
    padding-left: 24px;
}

.legal-block li {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
    list-style: disc;
}

.contact-info-block {
    background: var(--gray-50);
    padding: 24px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 4px solid var(--accent-color);
}

.contact-info-block p {
    margin-bottom: 8px;
}

.contact-info-block p:last-child {
    margin-bottom: 0;
}

.contact-info-block a {
    color: var(--accent-color);
}

.contact-info-block a:hover {
    color: var(--accent-hover);
}

@media (max-width: 768px) {
    .legal-section {
        padding: 60px 0;
    }
    
    .legal-block h2 {
        font-size: 1.25rem;
    }
    
    .legal-block ul {
        padding-left: 20px;
    }
}

@media (max-width: 480px) {
    .legal-section {
        padding: 40px 0;
    }
    
    .legal-block {
        margin-bottom: 32px;
    }
}

.privacy-content-section {
    padding: 80px 0;
    background: var(--gray-50);
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 16px;
    padding: 48px;
    box-shadow: var(--shadow-lg);
}

.privacy-intro {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 2px solid var(--gray-100);
}

.privacy-intro h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.privacy-intro p {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 12px;
}

.privacy-section {
    margin-bottom: 40px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--gray-200);
}

.privacy-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.privacy-section h2 {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.privacy-section h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-light);
    margin-top: 24px;
    margin-bottom: 12px;
}

.privacy-section p {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.privacy-section ul {
    list-style: disc;
    padding-left: 24px;
    margin-bottom: 16px;
}

.privacy-section li {
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 8px;
}

.privacy-section a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

.contact-info-section {
    background: var(--gray-50);
    padding: 32px;
    border-radius: 12px;
    margin-top: 40px;
}

.contact-info-box {
    background: var(--white);
    border-radius: 8px;
    padding: 24px;
    margin: 20px 0;
    border-left: 4px solid var(--accent-color);
}

.contact-info-box p {
    margin-bottom: 8px;
}

.contact-info-box p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .privacy-content-section {
        padding: 60px 0;
    }
    
    .privacy-wrapper {
        padding: 32px 24px;
        margin: 0 16px;
        border-radius: 12px;
    }
    
    .privacy-intro h2,
    .privacy-section h2 {
        font-size: 1.5rem;
    }
    
    .privacy-section h3 {
        font-size: 1.125rem;
    }
    
    .contact-info-section {
        padding: 24px 16px;
    }
}

@media (max-width: 480px) {
    .privacy-wrapper {
        padding: 24px 16px;
    }
    
    .privacy-intro h2,
    .privacy-section h2 {
        font-size: 1.375rem;
    }
}