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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #f8f9fa;
}

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

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
}

.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: 250px;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 12px 30px;
    font-size: 15px;
    border-radius: 4px;
    transition: background 0.3s;
}

.btn-cookie-accept {
    background: #27ae60;
    color: #fff;
}

.btn-cookie-accept:hover {
    background: #229954;
}

.btn-cookie-reject {
    background: #7f8c8d;
    color: #fff;
}

.btn-cookie-reject:hover {
    background: #626d6e;
}

.header-asymmetric {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    padding: 25px 40px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-floating {
    display: flex;
    align-items: center;
    gap: 30px;
}

.ad-disclosure {
    font-size: 13px;
    color: #7f8c8d;
    padding: 6px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.nav-items {
    display: flex;
    list-style: none;
    gap: 35px;
}

.nav-items a {
    font-size: 16px;
    font-weight: 500;
    color: #34495e;
    transition: color 0.3s;
}

.nav-items a:hover {
    color: #3498db;
}

.hero-asymmetric {
    position: relative;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 600px;
}

.hero-content-offset {
    flex: 1;
    z-index: 2;
}

.hero-text-block {
    background: rgba(255, 255, 255, 0.95);
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    transform: translateX(-30px);
}

.hero-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 35px;
}

.cta-hero {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-hero:hover {
    background: #2980b9;
}

.hero-image-overlap {
    flex: 1;
    position: relative;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    height: 550px;
}

.hero-image-overlap img {
    height: 100%;
}

.intro-offset {
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.intro-block-left {
    flex: 1.2;
}

.intro-block-left h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-block-left p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.intro-visual-right {
    flex: 1;
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
}

.intro-visual-right img {
    height: 100%;
}

.services-cards-irregular {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.services-header-centered {
    text-align: center;
    margin-bottom: 70px;
}

.services-header-centered h3 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1a1a1a;
}

.services-header-centered p {
    font-size: 19px;
    color: #666;
}

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

.service-card {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
    overflow: hidden;
    width: calc(33.333% - 30px);
    min-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.card-offset-1 {
    margin-top: 0;
}

.card-offset-2 {
    margin-top: 40px;
}

.card-offset-3 {
    margin-top: 20px;
}

.card-offset-4 {
    margin-top: 60px;
}

.card-offset-5 {
    margin-top: 30px;
}

.service-image {
    background: #e8e8e8;
    height: 240px;
    overflow: hidden;
}

.service-image img {
    height: 100%;
}

.service-card h4 {
    font-size: 22px;
    font-weight: 700;
    margin: 25px 25px 15px 25px;
    color: #2c3e50;
}

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin: 0 25px 20px 25px;
}

.service-price {
    font-size: 28px;
    font-weight: 800;
    color: #27ae60;
    margin: 0 25px 25px 25px;
}

.btn-select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px 25px;
    padding: 14px;
    background: #3498db;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.btn-select-service:hover {
    background: #2980b9;
}

.form-section-overlap {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.form-container-asymmetric {
    background: #fff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
    transform: translateX(50px);
}

.form-intro {
    margin-bottom: 40px;
}

.form-intro h3 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-intro p {
    font-size: 17px;
    color: #666;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 15px;
    font-weight: 600;
    color: #34495e;
}

.form-group input,
.form-group textarea,
.form-group select {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: border-color 0.3s;
}

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

.btn-submit {
    padding: 16px;
    background: #27ae60;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

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

.trust-block-stacked {
    max-width: 1000px;
    margin: 120px auto;
    padding: 0 40px;
}

.trust-content-centered {
    text-align: center;
}

.trust-content-centered h3 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

.trust-content-centered p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 50px;
}

.trust-visual {
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    height: 450px;
}

.trust-visual img {
    height: 100%;
}

.footer-asymmetric {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 60px 40px 30px 40px;
    margin-top: 120px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    flex-wrap: wrap;
}

.footer-block {
    flex: 1;
    min-width: 250px;
}

.footer-block h4 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-block h5 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: #bdc3c7;
}

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

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

.footer-block ul li a {
    font-size: 15px;
    color: #bdc3c7;
    transition: color 0.3s;
}

.footer-block ul li a:hover {
    color: #3498db;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #95a5a6;
}

.thanks-page {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    text-align: center;
}

.thanks-page h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 25px;
    color: #27ae60;
}

.thanks-page p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.thanks-page .service-selected {
    font-size: 20px;
    font-weight: 600;
    color: #3498db;
    margin: 30px 0;
    padding: 20px;
    background: #ecf8ff;
    border-radius: 5px;
}

.thanks-page a {
    display: inline-block;
    margin-top: 30px;
    padding: 16px 40px;
    background: #3498db;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    border-radius: 5px;
    transition: background 0.3s;
}

.thanks-page a:hover {
    background: #2980b9;
}

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

.about-section {
    margin-bottom: 80px;
}

.about-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-section h3 {
    font-size: 28px;
    font-weight: 600;
    margin: 40px 0 20px 0;
    color: #34495e;
}

.about-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-visual {
    background: #e8e8e8;
    border-radius: 8px;
    overflow: hidden;
    height: 400px;
    margin: 40px 0;
}

.about-visual img {
    height: 100%;
}

.contact-page {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.contact-header h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-header p {
    font-size: 18px;
    color: #666;
}

.contact-details {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.06);
}

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

.contact-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

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

.legal-page h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 40px 0 20px 0;
    color: #34495e;
}

.legal-page h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 30px 0 15px 0;
    color: #34495e;
}

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

.legal-page ul {
    margin: 20px 0 20px 30px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-text-block {
        transform: none;
    }

    .intro-offset {
        flex-direction: column;
    }

    .form-container-asymmetric {
        transform: none;
    }

    .service-card {
        width: calc(50% - 20px);
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-floating {
        flex-direction: column;
        gap: 15px;
    }

    .nav-items {
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 36px;
    }

    .service-card {
        width: 100%;
    }

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