* {
    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: #1a252f;
    color: #ffffff;
    padding: 1.5rem;
    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: 1rem;
}

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

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

.btn-reject {
    background: transparent;
    color: white;
    border: 1px solid #ffffff;
}

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

.main-nav {
    background: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e0e0e0;
    backdrop-filter: blur(10px);
}

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

.nav-brand {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2c3e50;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 0.85rem;
    color: #7f8c8d;
    padding: 0.4rem 0.8rem;
    background: #ecf0f1;
    border-radius: 4px;
}

.hero-asymmetric {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: #f8f9fa;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 4rem 2rem 4rem 8%;
}

.hero-text-block h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.hero-text-block p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e67e22;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

.hero-image-overlap {
    position: absolute;
    right: -5%;
    top: 10%;
    width: 65%;
    height: 80%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #d5e1df;
}

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

.intro-offset {
    padding: 8rem 5% 6rem 8%;
    display: flex;
    gap: 4rem;
    align-items: center;
    background: #ffffff;
}

.intro-narrow {
    flex: 1;
    max-width: 550px;
}

.intro-narrow h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.intro-narrow p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
}

.intro-image-side {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
    background-color: #c9d6d4;
}

.intro-image-side img {
    width: 100%;
    height: auto;
}

.services-asymmetric {
    padding: 7rem 3% 8rem 3%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef2 100%);
}

.services-header-offset {
    max-width: 650px;
    margin-left: 12%;
    margin-bottom: 4rem;
}

.services-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.services-header-offset p {
    font-size: 1.15rem;
    color: #5a6c7d;
}

.service-cards-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 320px;
}

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

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

.card-offset-2 {
    margin-top: 3rem;
}

.card-offset-3 {
    margin-top: 1.5rem;
}

.card-offset-4 {
    margin-top: 2.5rem;
}

.card-offset-5 {
    margin-top: 1rem;
}

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background-color: #d5e1df;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.service-info p {
    font-size: 1rem;
    line-height: 1.6;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    padding: 1rem;
    background: #3498db;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.select-service.selected {
    background: #27ae60;
}

.form-section-offset {
    padding: 7rem 5%;
    background: #1a252f;
    color: white;
}

.form-container-irregular {
    max-width: 800px;
    margin-left: 15%;
}

.form-intro {
    margin-bottom: 3rem;
}

.form-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.form-intro p {
    font-size: 1.1rem;
    color: #b0bec5;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    padding: 3rem;
    border-radius: 10px;
    backdrop-filter: blur(10px);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: #ecf0f1;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1rem;
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.form-group select {
    cursor: pointer;
}

.form-group option {
    background: #1a252f;
    color: white;
}

.btn-submit {
    width: 100%;
    padding: 1.2rem;
    background: #e67e22;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-block-offset {
    padding: 8rem 8% 8rem 12%;
    background: #ffffff;
}

.trust-content h2 {
    font-size: 2.6rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
    max-width: 700px;
}

.trust-content > p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 3rem;
    max-width: 750px;
}

.trust-features {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.feature-item {
    flex: 1 1 280px;
}

.feature-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.feature-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.main-footer {
    background: #1a252f;
    color: #b0bec5;
    padding: 4rem 5% 2rem 5%;
}

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

.footer-section {
    flex: 1 1 220px;
}

.footer-section h4 {
    color: #ffffff;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-section p {
    line-height: 1.8;
}

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

.footer-section ul li {
    margin-bottom: 0.6rem;
}

.footer-section a {
    color: #b0bec5;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #e67e22;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem auto;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid #e67e22;
}

.footer-disclaimer p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #b0bec5;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-content-offset {
        padding: 3rem 1.5rem;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        right: 0;
        top: 0;
        margin-top: 2rem;
    }

    .intro-offset {
        flex-direction: column;
        padding: 4rem 5%;
    }

    .service-cards-irregular {
        gap: 2rem;
    }

    .service-card {
        flex: 1 1 100%;
        margin-top: 0 !important;
    }

    .form-container-irregular {
        margin-left: 0;
    }

    .trust-features {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

.about-hero {
    padding: 6rem 8% 5rem 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef2 100%);
}

.about-hero h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.about-hero p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 750px;
}

.about-content {
    padding: 6rem 8%;
    background: #ffffff;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 4rem auto;
}

.about-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a252f;
}

.about-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1.5rem;
}

.services-page-hero {
    padding: 6rem 8% 4rem 8%;
    background: #1a252f;
    color: white;
}

.services-page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.services-page-hero p {
    font-size: 1.2rem;
    color: #b0bec5;
    max-width: 700px;
}

.services-detail-section {
    padding: 6rem 8%;
    background: #ffffff;
}

.contact-page {
    padding: 6rem 8%;
    background: linear-gradient(135deg, #f8f9fa 0%, #e8eef2 100%);
    min-height: 70vh;
}

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

.contact-content h1 {
    font-size: 3rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.contact-info {
    background: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.contact-detail {
    margin-bottom: 2rem;
}

.contact-detail h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a252f;
}

.contact-detail p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.legal-page {
    padding: 6rem 8%;
    background: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a252f;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a252f;
}

.legal-content p,
.legal-content li {
    font-size: 1rem;
    line-height: 1.8;
    color: #5a6c7d;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

.thanks-page {
    padding: 8rem 5%;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

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

.thanks-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
}

.thanks-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.thanks-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: white;
    color: #27ae60;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}