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

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

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

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

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

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

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

.hero-asymmetric {
    display: flex;
    flex-direction: row;
    min-height: 90vh;
    padding: 80px 60px;
    position: relative;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.hero-content-offset {
    width: 45%;
    padding-top: 120px;
    padding-right: 60px;
    z-index: 10;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5a6c7d;
    margin-bottom: 40px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
}

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

.hero-image-overlap {
    position: absolute;
    right: 40px;
    top: 140px;
    width: 50%;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    background-color: #e9ecef;
}

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

.intro-offset {
    display: flex;
    flex-direction: row;
    padding: 100px 60px;
    gap: 80px;
    background-color: #ffffff;
}

.intro-text-block {
    width: 55%;
    padding-top: 40px;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 20px;
    line-height: 1.8;
}

.intro-visual {
    width: 40%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    background-color: #f8f9fa;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-irregular {
    padding: 120px 60px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.section-title-offset {
    font-size: 3rem;
    margin-bottom: 80px;
    color: #2c3e50;
    padding-left: 120px;
}

.service-cards-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.service-card {
    display: flex;
    flex-direction: row;
    gap: 40px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.card-offset-2 {
    margin-left: 100px;
}

.card-offset-3 {
    margin-left: 200px;
}

.card-offset-4 {
    margin-left: 80px;
}

.card-offset-5 {
    margin-left: 150px;
}

.service-image-wrapper {
    width: 40%;
    border-radius: 12px;
    overflow: hidden;
    background-color: #e9ecef;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-card p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 20px;
}

.service-select-btn {
    padding: 12px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-select-btn:hover {
    background-color: #34495e;
}

.form-section-overlap {
    position: relative;
    display: flex;
    flex-direction: row;
    padding: 100px 60px;
    background-color: #2c3e50;
}

.form-container {
    width: 55%;
    padding: 60px;
    background-color: #ffffff;
    border-radius: 16px;
    z-index: 10;
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 40px;
}

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

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

.form-group label {
    font-size: 0.95rem;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px 18px;
    border: 1px solid #dee2e6;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-submit-btn {
    padding: 16px 40px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.form-submit-btn:hover {
    background-color: #2980b9;
}

.form-image-background {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    width: 35%;
    height: 70%;
    border-radius: 16px;
    overflow: hidden;
    background-color: #34495e;
}

.form-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.trust-section {
    padding: 100px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.trust-content h2 {
    font-size: 2.8rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.trust-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto 40px;
    line-height: 1.8;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.05rem;
    font-weight: 600;
    transition: background-color 0.3s, color 0.3s;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 60px 20px;
}

.footer-content {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h3,
.footer-col h4 {
    margin-bottom: 20px;
    color: #ffffff;
}

.footer-col p {
    color: #bdc3c7;
    line-height: 1.7;
}

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

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

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

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

.footer-disclaimer {
    padding: 30px 0;
    border-top: 1px solid #34495e;
    border-bottom: 1px solid #34495e;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #95a5a6;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    color: #95a5a6;
    font-size: 0.9rem;
}

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

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookie-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
}

.cookie-content p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #3498db;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #2980b9;
}

.cookie-reject {
    background-color: #e9ecef;
    color: #2c3e50;
}

.cookie-reject:hover {
    background-color: #dee2e6;
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 0.95rem;
}

.cookie-link:hover {
    text-decoration: underline;
}

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.thanks-service {
    font-size: 1.3rem;
    font-weight: 700;
    color: #3498db;
    margin: 30px 0;
}

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

.page-container h1 {
    font-size: 3rem;
    margin-bottom: 40px;
    color: #2c3e50;
}

.page-container h2 {
    font-size: 2rem;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.page-container p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.page-container ul li {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.contact-info-section {
    padding: 80px 60px;
    background-color: #f8f9fa;
}

.contact-info-grid {
    display: flex;
    flex-direction: row;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 15px;
}

.about-hero {
    padding: 120px 60px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.about-content {
    max-width: 900px;
}

.about-content h1 {
    font-size: 3.5rem;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.services-list-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.services-list-section h1 {
    font-size: 3rem;
    margin-bottom: 60px;
    color: #2c3e50;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-item {
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 12px;
}

.service-item h2 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-item p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

.service-item .service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

@media (max-width: 1024px) {
    .floating-nav {
        position: relative;
        top: 0;
        right: 0;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        border-radius: 0;
    }

    .nav-links {
        flex-direction: row;
    }

    .hero-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .hero-content-offset {
        width: 100%;
        padding-right: 0;
        padding-top: 40px;
    }

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

    .intro-offset {
        flex-direction: column;
        padding: 60px 30px;
        gap: 40px;
    }

    .intro-text-block,
    .intro-visual {
        width: 100%;
    }

    .services-irregular {
        padding: 60px 30px;
    }

    .section-title-offset {
        padding-left: 0;
    }

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

    .service-image-wrapper {
        width: 100%;
        height: 250px;
    }

    .form-section-overlap {
        flex-direction: column;
        padding: 60px 30px;
    }

    .form-container {
        width: 100%;
    }

    .form-image-background {
        position: relative;
        right: 0;
        top: 30px;
        transform: none;
        width: 100%;
        height: 300px;
    }

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

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