* {
    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;
}

.ad-notice {
    background-color: #34495e;
    color: #ecf0f1;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e8eaed;
    position: sticky;
    top: 29px;
    z-index: 999;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
}

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

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

.hero-asymmetric {
    display: flex;
    min-height: 600px;
    position: relative;
    align-items: center;
    background-color: #f8f9fa;
}

.hero-content-offset {
    flex: 1;
    padding: 80px 60px 80px 80px;
    max-width: 600px;
    z-index: 2;
}

.hero-title {
    font-size: 52px;
    line-height: 1.15;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    color: #546e7a;
}

.hero-image-wrapper {
    flex: 1.2;
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #e0e0e0;
}

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

.cta-primary {
    display: inline-block;
    background-color: #27ae60;
    color: #ffffff;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: #229954;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #27ae60;
    padding: 16px 36px;
    text-decoration: none;
    border: 2px solid #27ae60;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background-color: #27ae60;
    color: #ffffff;
}

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

.intro-text-block {
    flex: 1.3;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
}

.intro-text-block p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.7;
}

.intro-image-float {
    flex: 1;
    position: relative;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

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

.services-asymmetric {
    padding: 120px 80px;
    background-color: #f4f6f8;
}

.section-header-tilted {
    margin-bottom: 60px;
    max-width: 700px;
}

.section-header-tilted h2 {
    font-size: 44px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.section-header-tilted p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.6;
}

.services-grid-offset {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

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

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

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

.card-medium {
    flex: 0 0 calc(50% - 15px);
}

.card-small {
    flex: 0 0 calc(40% - 15px);
}

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

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 16px;
}

.select-service-btn {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-diagonal {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    align-items: stretch;
    background: linear-gradient(135deg, #ecf0f1 0%, #ffffff 100%);
}

.form-container {
    flex: 1;
}

.form-container h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.form-intro {
    font-size: 17px;
    margin-bottom: 36px;
    color: #546e7a;
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid #d5dbdb;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.cta-submit {
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    padding: 16px 36px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.form-image-overlap {
    flex: 0.8;
    position: relative;
    background-color: #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
}

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

.trust-section {
    padding: 80px 80px;
    background-color: #2c3e50;
    color: #ecf0f1;
}

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

.trust-content-stacked h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #ffffff;
    font-weight: 700;
}

.trust-content-stacked p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 80px 20px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #27ae60;
    font-weight: 700;
}

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

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #27ae60;
}

.footer-disclaimer {
    background-color: rgba(52, 73, 94, 0.3);
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.footer-disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    color: #95a5a6;
    font-size: 14px;
}

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

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 15px;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s;
}

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

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn:hover {
    opacity: 0.9;
}

.page-hero-small {
    padding: 80px 80px 60px;
    background-color: #f4f6f8;
}

.page-hero-small h1 {
    font-size: 48px;
    color: #1a252f;
    font-weight: 800;
    margin-bottom: 16px;
}

.page-hero-small p {
    font-size: 18px;
    color: #546e7a;
    max-width: 700px;
}

.about-intro-split {
    display: flex;
    padding: 100px 80px;
    gap: 60px;
    align-items: center;
}

.about-text-column {
    flex: 1;
}

.about-text-column h2 {
    font-size: 38px;
    margin-bottom: 28px;
    color: #1a252f;
    font-weight: 700;
    line-height: 1.3;
}

.about-text-column p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.7;
}

.about-image-column {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.about-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.values-section {
    padding: 100px 80px;
    background-color: #f4f6f8;
}

.values-section h2 {
    font-size: 40px;
    margin-bottom: 60px;
    text-align: center;
    color: #1a252f;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.value-item {
    flex: 0 0 calc(50% - 20px);
    padding: 36px;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #27ae60;
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
}

.mission-offset {
    padding: 80px 80px;
    background-color: #ffffff;
}

.mission-content {
    max-width: 800px;
}

.mission-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.mission-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.7;
}

.services-detailed {
    padding: 60px 80px;
}

.service-detail-item {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    align-items: center;
}

.service-detail-item.reverse {
    flex-direction: row-reverse;
}

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.service-detail-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin: 24px 0 20px;
}

.service-detail-image {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cta-section-centered {
    padding: 100px 80px;
    text-align: center;
    background-color: #f4f6f8;
}

.cta-section-centered h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a252f;
    font-weight: 700;
}

.cta-section-centered p {
    font-size: 18px;
    margin-bottom: 36px;
    color: #546e7a;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.contact-section {
    display: flex;
    padding: 60px 80px 100px;
    gap: 60px;
}

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

.contact-item {
    margin-bottom: 36px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a252f;
    font-weight: 700;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #546e7a;
}

.contact-map-placeholder {
    flex: 1;
    background-color: #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
}

.contact-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.contact-note {
    padding: 60px 80px 100px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-note h2 {
    font-size: 34px;
    margin-bottom: 24px;
    color: #1a252f;
    font-weight: 700;
}

.contact-note p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #546e7a;
    line-height: 1.7;
}

.thanks-section {
    padding: 120px 80px;
    text-align: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
}

.legal-content {
    padding: 60px 80px 100px;
}

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

.legal-container h2 {
    font-size: 28px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #1a252f;
    font-weight: 700;
}

.legal-container p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #546e7a;
    line-height: 1.7;
}

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

.legal-container li {
    font-size: 16px;
    margin-bottom: 10px;
    color: #546e7a;
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .hero-asymmetric,
    .intro-offset,
    .form-section-diagonal,
    .about-intro-split,
    .service-detail-item,
    .contact-section {
        flex-direction: column;
    }

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

    .card-large,
    .card-medium,
    .card-small {
        flex: 0 0 100%;
    }

    .value-item {
        flex: 0 0 100%;
    }

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

    .main-nav {
        padding: 16px 24px;
    }

    .nav-links {
        gap: 20px;
    }

    .hero-content-offset,
    .intro-offset,
    .services-asymmetric,
    .form-section-diagonal,
    .trust-section,
    .main-footer,
    .about-intro-split,
    .values-section,
    .mission-offset,
    .services-detailed,
    .cta-section-centered,
    .contact-section,
    .contact-note,
    .thanks-section,
    .legal-content {
        padding-left: 24px;
        padding-right: 24px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 12px;
    }

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

    .thanks-actions {
        flex-direction: column;
    }
}