* {
    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-color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    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: 300px;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: all 0.3s ease;
}

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

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

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

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

.main-nav {
    background-color: #ffffff;
    padding: 20px 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #2c3e50;
}

.ad-notice {
    font-size: 12px;
    color: #7f8c8d;
    padding: 4px 12px;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    background-color: #f8f9fa;
}

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

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

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

.hero-asymmetric {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.hero-offset-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.hero-text-block {
    flex: 1;
    padding-right: 40px;
    z-index: 2;
}

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

.hero-text-block p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #555;
}

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

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

.hero-image-offset {
    flex: 1;
    position: relative;
    transform: translateY(40px);
    background-color: #ecf0f1;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-floating {
    padding: 100px 40px;
    background-color: #ffffff;
}

.floating-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    background-color: #34495e;
    color: white;
    border-radius: 12px;
    text-align: center;
    transform: rotate(-1deg);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.floating-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.floating-card p {
    font-size: 18px;
    line-height: 1.8;
}

.services-asymmetric {
    padding: 120px 40px;
    background-color: #f8f9fa;
}

.services-header-offset {
    max-width: 1400px;
    margin: 0 auto 60px;
    padding-left: 120px;
}

.services-header-offset h2 {
    font-size: 48px;
    color: #1a1a1a;
}

.services-grid-irregular {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

.offset-right {
    flex: 1 1 calc(40% - 15px);
    transform: translateY(60px);
}

.small-left {
    flex: 1 1 calc(35% - 15px);
}

.wide-card {
    flex: 1 1 calc(65% - 15px);
    transform: translateY(-40px);
}

.centered-card {
    flex: 1 1 calc(50% - 15px);
}

.floating-right {
    flex: 1 1 calc(50% - 15px);
    transform: translateY(80px);
}

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

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.price-tag {
    font-size: 28px;
    font-weight: bold;
    color: #27ae60;
    margin-bottom: 20px;
}

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

.select-service-btn:hover {
    background-color: #2980b9;
    transform: translateX(4px);
}

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

.benefits-scattered {
    padding: 100px 40px;
    background-color: #ffffff;
}

.benefit-block {
    max-width: 600px;
    padding: 40px;
    margin-bottom: 60px;
    background-color: #ecf0f1;
    border-radius: 8px;
}

.benefit-block h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.benefit-block p {
    font-size: 18px;
    color: #555;
}

.left-aligned {
    margin-left: 10%;
}

.right-offset {
    margin-left: auto;
    margin-right: 10%;
}

.centered-float {
    margin-left: 25%;
}

.form-section-offset {
    padding: 120px 40px;
    background-color: #34495e;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
    color: white;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.form-intro p {
    font-size: 18px;
    line-height: 1.8;
}

.contact-form {
    flex: 1;
    background-color: white;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

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

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

.trust-section {
    padding: 100px 40px;
    background-color: #f8f9fa;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-points {
    display: flex;
    gap: 40px;
    justify-content: space-between;
}

.trust-item {
    flex: 1;
    padding: 40px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.trust-item p {
    font-size: 18px;
    color: #555;
}

.footer-asymmetric {
    background-color: #1a1a1a;
    color: white;
    padding: 60px 40px 30px;
}

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

.footer-block h4 {
    font-size: 20px;
    margin-bottom: 16px;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid #34495e;
    font-size: 13px;
    color: #95a5a6;
    line-height: 1.6;
}

.contact-page-content {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.contact-info {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.contact-info p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #555;
}

.about-page-content {
    padding: 80px 40px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-container h1 {
    font-size: 48px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

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

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

.services-page-content {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.services-page-container {
    max-width: 1200px;
    margin: 0 auto;
}

.services-page-container h1 {
    font-size: 48px;
    margin-bottom: 60px;
    color: #1a1a1a;
    text-align: center;
}

.service-detail {
    background-color: white;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.service-detail h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-detail p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.service-detail .price-tag {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
}

.legal-page-content {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

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

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
    color: #34495e;
}

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

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

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

.thanks-page-content {
    padding: 120px 40px;
    background-color: #f8f9fa;
    text-align: center;
    min-height: 70vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 80px 60px;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.thanks-container h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #27ae60;
}

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

.thanks-container .selected-service-display {
    font-size: 22px;
    font-weight: bold;
    color: #3498db;
    margin: 30px 0;
}

.back-link {
    display: inline-block;
    margin-top: 40px;
    padding: 14px 32px;
    background-color: #3498db;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.back-link:hover {
    background-color: #2980b9;
}

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

    .services-grid-irregular {
        flex-direction: column;
    }

    .service-card {
        flex: 1 1 100%;
        transform: none !important;
    }

    .form-container-asymmetric {
        flex-direction: column;
    }

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

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

@media (max-width: 768px) {
    .nav-container {
        flex-wrap: wrap;
        gap: 20px;
    }

    .hero-text-block h1 {
        font-size: 36px;
    }

    .services-header-offset {
        padding-left: 0;
    }

    .benefit-block {
        margin-left: 0 !important;
        margin-right: 0 !important;
    }
}