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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #c41e3a;
    --accent-color: #2d2d2d;
    --text-color: #333;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --bg-dark: #1a1a1a;
    --border-color: #ddd;
    --white: #ffffff;
}

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

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

.container-wide {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.98);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.cookie-banner.hidden {
    display: none;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-cookie {
    padding: 10px 24px;
    border: none;
    background-color: var(--secondary-color);
    color: var(--white);
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-cookie:hover {
    background-color: #a01828;
}

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

.btn-cookie.secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

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

.navbar {
    padding: 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
}

.ad-notice {
    color: #999;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

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

.nav-menu a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-menu a:hover {
    color: var(--secondary-color);
}

.hero-section {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--accent-color);
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(196, 30, 58, 0.4));
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-content p {
    font-size: 22px;
    line-height: 1.5;
    opacity: 0.95;
}

.intro-block {
    padding: 80px 0;
    background-color: var(--white);
}

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-block p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.bg-dark {
    background-color: var(--bg-dark);
    color: var(--white);
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    margin-bottom: 28px;
}

.split-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.9;
}

.split-image {
    flex: 1;
    background-color: var(--accent-color);
}

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

.services-preview {
    padding: 100px 0;
    background-color: var(--bg-light);
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: var(--white);
    border-radius: 8px;
    overflow: hidden;
    width: calc(50% - 15px);
    max-width: 550px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: var(--accent-color);
}

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

.service-card h3 {
    font-size: 24px;
    margin: 24px 24px 12px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin: 0 24px 20px;
}

.price-tag {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 0 24px 20px;
}

.btn-select-service {
    display: block;
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
}

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

.philosophy-section h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.philosophy-section p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

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

.testimonials-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
}

.testimonials-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}

.testimonial-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 8px;
    width: calc(33.333% - 20px);
    min-width: 280px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    opacity: 0.8;
}

.cta-section {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.cta-box {
    background-color: var(--secondary-color);
    padding: 60px;
    border-radius: 12px;
    text-align: center;
    color: var(--white);
}

.cta-box h2 {
    font-size: 38px;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--white);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    border-radius: 4px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal.hidden {
    display: none;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 8px;
    max-width: 500px;
    width: 90%;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    font-size: 32px;
    cursor: pointer;
    color: var(--text-light);
    line-height: 1;
}

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

.modal-content h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

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

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

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: var(--bg-light);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col ul {
    list-style: none;
}

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 10px;
}

.disclaimer {
    font-size: 12px;
    line-height: 1.6;
    margin-bottom: 20px;
    opacity: 0.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

.contact-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.contact-info {
    background-color: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-item {
    margin-bottom: 30px;
}

.contact-item:last-child {
    margin-bottom: 0;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
}

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

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

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

.about-block {
    margin-bottom: 50px;
}

.about-block h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.about-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.about-image {
    width: 100%;
    height: 400px;
    margin: 40px 0;
    overflow: hidden;
    border-radius: 8px;
    background-color: var(--accent-color);
}

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

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

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: var(--text-color);
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 10px;
}

.thanks-section {
    padding: 100px 0;
    text-align: center;
    background-color: var(--bg-light);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 16px;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: var(--white);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-content a:hover {
    background-color: #a01828;
}

@media (max-width: 968px) {
    .nav-container {
        flex-wrap: wrap;
        height: auto;
        padding: 15px 20px;
    }

    .nav-menu {
        width: 100%;
        justify-content: center;
        margin-top: 15px;
    }

    .split-layout {
        flex-direction: column;
    }

    .service-card {
        width: 100%;
    }

    .testimonial-card {
        width: 100%;
    }

    .footer-content {
        flex-direction: column;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 18px;
    }

    .nav-menu {
        gap: 15px;
        font-size: 14px;
    }
}