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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-left .logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-right {
    display: flex;
    gap: 30px;
}

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

.nav-right a:hover {
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 600px;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 60px 5% 60px 8%;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #1a252f;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #495057;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

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

.intro-offset {
    padding: 80px 15% 80px 25%;
    background-color: #ffffff;
}

.intro-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #495057;
}

.visual-statement {
    display: flex;
    align-items: center;
    padding: 0;
}

.statement-image {
    flex: 0.9;
    background-color: #e9ecef;
}

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

.statement-content {
    flex: 1.1;
    padding: 60px 8% 60px 6%;
    background-color: #fefefe;
}

.statement-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a252f;
}

.statement-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #495057;
}

.services-grid {
    padding: 90px 5%;
    background-color: #f8f9fa;
}

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}

.section-header-centered h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #1a252f;
}

.section-header-centered p {
    font-size: 18px;
    color: #6c757d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 1 calc(33.333% - 20px);
    background-color: #ffffff;
    padding: 0;
    transition: transform 0.3s ease;
    cursor: pointer;
    border: 1px solid #dee2e6;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 22px;
    margin: 25px 25px 15px;
    color: #1a252f;
}

.service-card p {
    font-size: 15px;
    line-height: 1.6;
    margin: 0 25px 20px;
    color: #6c757d;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 20px 25px;
}

.service-card button {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 12px 20px;
    background-color: #e9ecef;
    color: #2c3e50;
    border: none;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-card button:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.service-card.selected {
    border: 2px solid #2c3e50;
}

.service-card.selected button {
    background-color: #2c3e50;
    color: #ffffff;
}

.form-section-split {
    display: flex;
    align-items: stretch;
}

.form-visual {
    flex: 1;
    background-color: #e9ecef;
}

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

.form-container {
    flex: 1;
    padding: 70px 6%;
    background-color: #ffffff;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #1a252f;
}

.form-container > p {
    font-size: 16px;
    margin-bottom: 35px;
    color: #6c757d;
}

.form-field {
    margin-bottom: 25px;
}

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 500;
    color: #495057;
}

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

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.cta-submit {
    padding: 14px 40px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-notice {
    margin-top: 20px;
    padding: 12px 18px;
    font-size: 14px;
    display: none;
}

.form-notice.error {
    background-color: #f8d7da;
    color: #721c24;
    display: block;
}

.form-notice.success {
    background-color: #d4edda;
    color: #155724;
    display: block;
}

.trust-block {
    padding: 80px 20%;
    background-color: #1a252f;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #ffffff;
}

.trust-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #dee2e6;
}

footer {
    background-color: #2c3e50;
    color: #dee2e6;
    padding: 60px 5% 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #495057;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #adb5bd;
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    padding: 25px 5%;
    display: none;
    z-index: 1000;
}

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

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

.cookie-content p {
    color: #dee2e6;
    font-size: 15px;
    flex: 1;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 25px;
    border: none;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-accept {
    background-color: #ffffff;
    color: #1a252f;
}

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

.cookie-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.page-hero {
    padding: 100px 5% 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero h1 {
    font-size: 48px;
    color: #1a252f;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 18px;
    color: #6c757d;
}

.about-story {
    display: flex;
    padding: 0;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.story-text {
    flex: 1.2;
    padding: 70px 7%;
    background-color: #ffffff;
}

.story-text h2 {
    font-size: 34px;
    margin-bottom: 25px;
    color: #1a252f;
}

.story-text p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 18px;
    color: #495057;
}

.values-section {
    padding: 90px 10%;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

.team-visual {
    padding: 0;
    background-color: #e9ecef;
}

.team-visual img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.experience-block {
    padding: 90px 18%;
    background-color: #ffffff;
}

.experience-text h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a252f;
}

.experience-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.services-detail {
    padding: 60px 5%;
}

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

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

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

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #495057;
}

.service-price-block {
    margin-top: 30px;
    padding: 20px 0;
    border-top: 2px solid #e9ecef;
}

.price-label {
    font-size: 14px;
    color: #6c757d;
    margin-right: 15px;
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
}

.service-detail-image {
    flex: 0.9;
    background-color: #e9ecef;
}

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

.cta-services {
    padding: 80px 5%;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-services h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #1a252f;
}

.contact-info-section {
    display: flex;
    padding: 60px 5%;
    gap: 60px;
    align-items: flex-start;
}

.contact-details {
    flex: 1;
}

.contact-block {
    margin-bottom: 50px;
}

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

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.email-display {
    font-family: monospace;
    background-color: #f8f9fa;
    padding: 8px 12px;
    display: inline-block;
}

.contact-visual {
    flex: 1;
    background-color: #e9ecef;
}

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

.contact-approach {
    padding: 80px 15%;
    background-color: #f8f9fa;
}

.contact-approach h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a252f;
}

.contact-approach p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: #495057;
}

.thanks-section {
    display: flex;
    min-height: 500px;
    align-items: center;
}

.thanks-content {
    flex: 1.2;
    padding: 80px 8%;
    background-color: #f8f9fa;
}

.thanks-content h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a252f;
}

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

.thanks-content .cta-primary {
    margin-top: 30px;
}

.thanks-visual {
    flex: 0.8;
    background-color: #e9ecef;
}

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

.legal-page {
    padding: 60px 20%;
    background-color: #ffffff;
}

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

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 25px;
    margin-bottom: 12px;
    color: #495057;
}

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

.legal-page ul {
    margin: 15px 0 20px 30px;
}

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

.legal-update {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid #e9ecef;
    font-size: 14px;
    color: #6c757d;
}

@media (max-width: 768px) {
    .hero-split,
    .visual-statement,
    .form-section-split,
    .about-story,
    .service-detail-item,
    .contact-info-section,
    .thanks-section {
        flex-direction: column;
    }

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

    .values-grid,
    .footer-columns {
        flex-direction: column;
    }

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

    .nav-right {
        gap: 15px;
        font-size: 14px;
    }

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

    .intro-offset,
    .experience-block,
    .legal-page {
        padding-left: 5%;
        padding-right: 5%;
    }

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