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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    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;
}

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #e74c3c;
    color: white;
}

.btn-primary:hover {
    background: #c0392b;
}

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

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

.main-nav {
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
}

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: #e74c3c;
}

.hero-block {
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('https://images.unsplash.com/photo-1503387762-592deb58ef4e?w=1600&h=900&fit=crop');
    background-size: cover;
    background-position: center;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    text-align: center;
    color: white;
    max-width: 900px;
    padding: 40px;
}

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

.hero-subtitle {
    font-size: 22px;
    margin-bottom: 40px;
    opacity: 0.95;
    font-weight: 300;
}

.cta-hero {
    display: inline-block;
    padding: 16px 42px;
    background: #e74c3c;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    font-size: 18px;
}

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

.intro-block {
    background: #f8f9fa;
    padding: 100px 30px;
}

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

.intro-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-block p {
    font-size: 19px;
    color: #555;
    line-height: 1.8;
}

.value-block-dark {
    background: #34495e;
    padding: 120px 30px;
    color: white;
}

.container-wide {
    max-width: 1300px;
    margin: 0 auto;
}

.split-content {
    display: flex;
    gap: 80px;
    align-items: center;
}

.content-left,
.content-right {
    flex: 1;
}

.value-block-dark h3 {
    font-size: 36px;
    margin-bottom: 26px;
}

.value-block-dark p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    opacity: 0.95;
}

.content-right img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.services-preview {
    padding: 120px 30px;
    background: white;
}

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

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 20px;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 19px;
    color: #666;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 320px;
    max-width: 380px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.service-content p {
    font-size: 15px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.select-service {
    width: 100%;
    padding: 14px;
    background: #2c3e50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.select-service:hover {
    background: #1a252f;
}

.testimonial-block {
    background: #ecf0f1;
    padding: 80px 30px;
}

.testimonial-block blockquote {
    border-left: 4px solid #e74c3c;
    padding-left: 30px;
    font-size: 22px;
    font-style: italic;
    color: #2c3e50;
    line-height: 1.7;
}

.testimonial-block cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    color: #555;
}

.process-block {
    padding: 100px 30px;
    background: white;
}

.process-block h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 70px;
    color: #2c3e50;
}

.process-steps {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 240px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 20px;
}

.step h4 {
    font-size: 20px;
    margin-bottom: 14px;
    color: #2c3e50;
}

.step p {
    font-size: 15px;
    color: #666;
    line-height: 1.6;
}

.why-choose-block {
    padding: 100px 30px;
    background: #f8f9fa;
}

.grid-two {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
}

.feature-item {
    flex: 1 1 calc(50% - 25px);
    min-width: 280px;
}

.feature-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.feature-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
}

.cta-block-alternate {
    padding: 100px 30px;
    background: #e74c3c;
    color: white;
}

.center {
    text-align: center;
}

.cta-block-alternate h3 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-block-alternate p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
}

.cta-btn-large {
    display: inline-block;
    padding: 18px 48px;
    background: white;
    color: #e74c3c;
    text-decoration: none;
    font-weight: 700;
    border-radius: 4px;
    font-size: 18px;
    transition: all 0.3s ease;
}

.cta-btn-large:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.form-section {
    padding: 100px 30px;
    background: white;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #2c3e50;
}

.main-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #e74c3c;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background: #e74c3c;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.submit-btn:hover {
    background: #c0392b;
}

.main-footer {
    background: #2c3e50;
    color: white;
    padding: 60px 30px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h5 {
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col ul li a:hover {
    color: #e74c3c;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 18px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 16px;
}

.thanks-content .selected-service {
    font-weight: 700;
    color: #e74c3c;
}

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 36px;
    background: #2c3e50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-content a:hover {
    background: #1a252f;
}

.contact-info {
    background: white;
    padding: 100px 30px;
}

.contact-info h1 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.contact-grid {
    display: flex;
    gap: 60px;
    max-width: 1100px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-item {
    flex: 1;
    min-width: 280px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.8;
}

.contact-item a {
    color: #e74c3c;
    text-decoration: none;
}

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

.about-hero {
    background: #f8f9fa;
    padding: 100px 30px;
    text-align: center;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.about-hero p {
    font-size: 20px;
    color: #666;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

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

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-content p {
    font-size: 17px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-page {
    padding: 80px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

.legal-page p {
    font-size: 15px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-page ul {
    margin: 16px 0 16px 30px;
    color: #666;
}

.legal-page li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
}

.services-page {
    padding: 80px 30px;
}

.services-page h1 {
    font-size: 44px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

    .hero-overlay h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .split-content {
        flex-direction: column;
        gap: 40px;
    }

    .service-card {
        flex: 1 1 100%;
    }

    .process-steps {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 30px;
    }
}