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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    overflow-x: hidden;
}

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.nav-floating {
    position: fixed;
    top: 50px;
    right: 40px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    padding: 20px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nav-brand {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.nav-links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.nav-links a {
    color: #495057;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.hero-offset {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding: 80px 40px 80px 80px;
}

.hero-text-block {
    max-width: 550px;
    z-index: 10;
    position: relative;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a202c;
}

.hero-text-block p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

.hero-image-overlap {
    position: absolute;
    right: -100px;
    top: 15%;
    width: 60%;
    max-width: 800px;
    transform: rotate(3deg);
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2d3748;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a202c;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(45, 55, 72, 0.3);
}

.intro-asymmetric {
    display: flex;
    align-items: flex-start;
    gap: 60px;
    padding: 120px 80px;
    background-color: #f7fafc;
    position: relative;
}

.intro-column-left {
    flex: 1;
    max-width: 600px;
    padding-top: 80px;
}

.intro-column-left h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a202c;
}

.intro-column-left p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
}

.intro-image-offset {
    flex: 1;
    transform: translateY(-60px);
}

.intro-image-offset img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    object-fit: cover;
    background-color: #cbd5e0;
}

.services-staggered {
    padding: 100px 40px;
    background: white;
}

.section-header-offset {
    max-width: 500px;
    margin-left: 15%;
    margin-bottom: 80px;
}

.section-header-offset h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
}

.section-header-offset p {
    font-size: 18px;
    color: #718096;
}

.service-card {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-bottom: 80px;
    position: relative;
}

.card-left {
    margin-left: 8%;
    margin-right: 12%;
}

.card-right {
    margin-left: 12%;
    margin-right: 8%;
}

.card-center {
    margin-left: auto;
    margin-right: auto;
    max-width: 900px;
}

.card-full {
    flex-direction: column;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    background-color: #edf2f7;
    padding: 50px;
    border-radius: 12px;
}

.service-image {
    flex: 1;
    min-width: 350px;
}

.service-image img {
    width: 100%;
    height: 280px;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

.service-content {
    flex: 1;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2d3748;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a5568;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2b6cb0;
    margin-bottom: 20px;
}

.btn-select {
    padding: 12px 28px;
    background-color: #4299e1;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4);
}

.service-content-full {
    text-align: center;
    margin-bottom: 30px;
}

.service-content-full h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a202c;
}

.service-content-full p {
    font-size: 17px;
    margin-bottom: 24px;
    color: #4a5568;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.service-image-full {
    width: 100%;
}

.service-image-full img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    object-fit: cover;
    background-color: #cbd5e0;
}

.cta-overlap {
    padding: 120px 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-block {
    max-width: 600px;
    margin-left: 10%;
    color: white;
    position: relative;
    z-index: 10;
}

.cta-block h2 {
    font-size: 44px;
    margin-bottom: 20px;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: white;
    color: #667eea;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 255, 255, 0.3);
}

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.6);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 50px;
    border-radius: 12px;
    width: 90%;
    max-width: 550px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 700;
    color: #a0aec0;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close:hover {
    color: #2d3748;
}

.modal-content h2 {
    margin-bottom: 30px;
    color: #1a202c;
    font-size: 26px;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

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

.btn-submit:hover {
    background-color: #38a169;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(72, 187, 120, 0.4);
}

.footer-asymmetric {
    background-color: #1a202c;
    color: #cbd5e0;
    padding: 80px 60px 40px 60px;
}

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

.footer-col {
    flex: 1;
}

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

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

.footer-col a {
    display: block;
    color: #cbd5e0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: #63b3ed;
}

.footer-disclaimer {
    border-top: 1px solid #2d3748;
    padding-top: 30px;
    margin-top: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.8;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: white;
    padding: 24px 40px;
    z-index: 3000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: white;
}

.btn-accept:hover {
    background-color: #38a169;
    transform: translateY(-2px);
}

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

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

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

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

.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a202c;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    background-color: #f7fafc;
    padding: 30px;
    border-radius: 8px;
}

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

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

.about-page {
    padding: 100px 80px;
}

.about-hero {
    max-width: 800px;
    margin: 0 auto 80px auto;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 24px;
    color: #1a202c;
}

.about-hero p {
    font-size: 19px;
    color: #4a5568;
    line-height: 1.7;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-bottom: 80px;
}

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #4a5568;
    line-height: 1.8;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    background-color: #e2e8f0;
}

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

.services-header {
    max-width: 700px;
    margin-bottom: 80px;
}

.services-header h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: #1a202c;
}

.services-header p {
    font-size: 18px;
    color: #4a5568;
}

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a202c;
}

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

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

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

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

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

.thanks-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
}

.thanks-content {
    max-width: 600px;
    text-align: center;
    background: white;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

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

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

.thanks-content a {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 32px;
    background-color: #4299e1;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.thanks-content a:hover {
    background-color: #3182ce;
    transform: translateY(-2px);
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 60px 40px;
    }

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

    .intro-asymmetric {
        flex-direction: column;
        padding: 80px 40px;
    }

    .intro-image-offset {
        transform: none;
    }

    .service-card {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .card-left,
    .card-right {
        margin-left: 0;
        margin-right: 0;
    }

    .service-image {
        min-width: 100%;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .footer-columns {
        flex-direction: column;
        gap: 40px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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