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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', 'Arial', sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

.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;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: all 0.3s ease;
}

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

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

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

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

.nav-floating {
    position: fixed;
    top: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1000;
    width: 90%;
    max-width: 1200px;
}

.nav-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-brand {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
}

.nav-ad-notice {
    font-size: 11px;
    color: #7f8c8d;
    padding: 5px 12px;
    background: #ecf0f1;
    border-radius: 20px;
}

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

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

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

.hero-asymmetric {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 150px 5% 80px;
}

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

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

.hero-subtitle {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

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

.cta-hero:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.3);
}

.hero-image-overlap {
    position: absolute;
    right: -10%;
    top: 15%;
    width: 55%;
    z-index: 1;
    transform: rotate(-3deg);
}

.hero-image-overlap img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    background-color: #ecf0f1;
}

.intro-staggered {
    display: flex;
    padding: 120px 10%;
    gap: 80px;
    align-items: flex-start;
    background: #f8f9fa;
}

.intro-text-block {
    flex: 1.5;
    padding-top: 60px;
}

.intro-text-block h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 30px;
    color: #2c3e50;
}

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

.intro-text-block a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.intro-text-block a:hover {
    text-decoration: underline;
}

.intro-image-sidebar {
    flex: 1;
    position: relative;
    top: -40px;
}

.intro-image-sidebar img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    background-color: #bdc3c7;
}

.services-grid-offset {
    padding: 100px 7%;
    background: #ffffff;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 70px;
    padding-left: 40px;
}

.section-header-left h2 {
    font-size: 48px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 15px;
}

.section-header-left p {
    font-size: 19px;
    color: #666666;
}

.services-asymmetric-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.card-large {
    flex: 1 1 calc(60% - 15px);
    min-width: 350px;
}

.card-medium {
    flex: 1 1 calc(40% - 15px);
    min-width: 300px;
}

.card-small {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
}

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #d5dbdb;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #555555;
    margin: 0 25px 15px;
    flex-grow: 1;
}

.service-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.service-card a:hover {
    text-decoration: underline;
}

.service-price {
    font-size: 26px;
    font-weight: 800;
    color: #27ae60;
    margin: 20px 25px 15px;
}

.btn-select-service {
    margin: 0 25px 25px;
    padding: 14px 0;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.form-section-diagonal {
    padding: 120px 10%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
}

.form-container-offset {
    max-width: 700px;
    margin-left: 10%;
    background: #ffffff;
    padding: 60px;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.form-container-offset h2 {
    font-size: 38px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.form-container-offset > p {
    font-size: 17px;
    color: #666666;
    margin-bottom: 35px;
}

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

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

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

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    border: 2px solid #dfe6e9;
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background: #f8f9fa;
    color: #2c3e50;
    font-weight: 600;
}

.btn-submit {
    padding: 16px 0;
    background: #e74c3c;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.trust-section-overlap {
    padding: 100px 15%;
    background: #ecf0f1;
    position: relative;
}

.trust-content {
    max-width: 800px;
    margin-left: auto;
    margin-right: 0;
}

.trust-content h2 {
    font-size: 44px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 25px;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.trust-content a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.trust-content a:hover {
    text-decoration: underline;
}

.disclaimer-section {
    padding: 60px 10%;
    background: #fff3cd;
    border-left: 6px solid #f39c12;
}

.disclaimer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.disclaimer-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #856404;
    margin-bottom: 15px;
}

.disclaimer-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #856404;
}

.footer-stacked {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 80px 10% 30px;
}

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

.footer-column {
    flex: 1;
    min-width: 220px;
}

.footer-column h4 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
}

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

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

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

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

.footer-column a:hover {
    color: #3498db;
}

.footer-references {
    background: rgba(0, 0, 0, 0.2);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.footer-references h4 {
    font-size: 18px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
}

.footer-references ol {
    padding-left: 25px;
}

.footer-references li {
    font-size: 14px;
    line-height: 1.8;
    color: #bdc3c7;
    margin-bottom: 10px;
}

.footer-references a {
    color: #3498db;
    text-decoration: none;
}

.footer-references a:hover {
    text-decoration: underline;
}

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

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 150px 10%;
    text-align: center;
}

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

.thanks-icon {
    font-size: 80px;
    color: #27ae60;
    margin-bottom: 30px;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #555555;
    margin-bottom: 40px;
}

.thanks-content .service-selected {
    display: inline-block;
    padding: 12px 25px;
    background: #ecf0f1;
    border-radius: 30px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 30px;
}

.btn-home {
    display: inline-block;
    padding: 16px 40px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 18px;
    transition: all 0.3s ease;
}

.btn-home:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.content-page {
    padding: 150px 10% 80px;
}

.content-page h1 {
    font-size: 52px;
    font-weight: 800;
    color: #2c3e50;
    margin-bottom: 30px;
}

.content-page h2 {
    font-size: 32px;
    font-weight: 700;
    color: #34495e;
    margin-top: 40px;
    margin-bottom: 20px;
}

.content-page h3 {
    font-size: 24px;
    font-weight: 600;
    color: #34495e;
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.content-page ul,
.content-page ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.content-page li {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 10px;
}

.content-page a {
    color: #3498db;
    text-decoration: none;
}

.content-page a:hover {
    text-decoration: underline;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    margin: 40px 0;
}

.contact-info h3 {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.8;
    color: #555555;
    margin-bottom: 12px;
}

.contact-info .email-display {
    color: #34495e;
    font-weight: 600;
}

@media (max-width: 1200px) {
    .hero-title {
        font-size: 48px;
    }

    .hero-image-overlap {
        width: 50%;
        right: -5%;
    }

    .intro-staggered {
        flex-direction: column;
        gap: 50px;
    }

    .intro-image-sidebar {
        top: 0;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 15px 25px;
    }

    .nav-links {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        text-align: center;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 130px 5% 60px;
    }

    .hero-content-offset {
        margin-left: 0;
        max-width: 100%;
        text-align: center;
    }

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

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

    .hero-image-overlap {
        position: relative;
        width: 100%;
        right: 0;
        top: 40px;
        transform: none;
    }

    .intro-staggered {
        padding: 80px 5%;
    }

    .intro-text-block {
        padding-top: 0;
    }

    .intro-text-block h2 {
        font-size: 32px;
    }

    .services-grid-offset {
        padding: 80px 5%;
    }

    .section-header-left {
        padding-left: 0;
    }

    .section-header-left h2 {
        font-size: 36px;
    }

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

    .form-section-diagonal {
        padding: 80px 5%;
    }

    .form-container-offset {
        margin-left: 0;
        padding: 40px 30px;
    }

    .form-container-offset h2 {
        font-size: 32px;
    }

    .trust-section-overlap {
        padding: 80px 5%;
    }

    .trust-content {
        margin: 0;
    }

    .trust-content h2 {
        font-size: 32px;
    }

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

    .content-page {
        padding: 130px 5% 60px;
    }

    .content-page h1 {
        font-size: 36px;
    }

    .thanks-content h1 {
        font-size: 36px;
    }
}