* {
    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-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a73e8;
}

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

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

.nav-links a:hover {
    color: #1a73e8;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
    gap: 80px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 54px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    color: #546e7a;
    margin-bottom: 40px;
    line-height: 1.8;
}

.hero-visual {
    flex: 1;
    background-color: #e3f2fd;
}

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

.cta-primary {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

.value-proposition {
    background-color: #f8f9fa;
    padding: 100px 40px;
}

.content-wrapper-narrow {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper-narrow h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.content-wrapper-narrow p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
}

.approach-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
    gap: 100px;
    align-items: center;
}

.approach-image {
    flex: 1;
    background-color: #f1f8e9;
}

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.link-inline {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-bottom-color 0.3s ease;
}

.link-inline:hover {
    border-bottom-color: #1a73e8;
}

.services-highlight {
    background-color: #fafafa;
    padding: 100px 40px;
}

.services-highlight h2 {
    text-align: center;
    font-size: 44px;
    margin-bottom: 70px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-card {
    flex: 1 1 calc(50% - 20px);
    background-color: #ffffff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 26px;
    margin: 25px 30px 15px 30px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-card p {
    margin: 0 30px 20px 30px;
    color: #546e7a;
    font-size: 16px;
    line-height: 1.6;
}

.service-card .price {
    margin: 0 30px 25px 30px;
    font-size: 28px;
    font-weight: 700;
    color: #1a73e8;
}

.select-service {
    width: calc(100% - 60px);
    margin: 0 30px 30px 30px;
    padding: 14px 0;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1557b0;
}

.form-section {
    padding: 120px 40px;
    background-color: #ffffff;
}

.form-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.form-wrapper {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

.selected-service-display {
    background-color: #e3f2fd;
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 25px;
    font-weight: 600;
    color: #1a73e8;
}

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

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

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

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #1a73e8;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-markers {
    background-color: #f1f3f4;
    padding: 100px 40px;
}

.trust-markers h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
    font-weight: 700;
}

.markers-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.marker {
    flex: 1;
}

.marker h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

.marker p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
}

.main-footer {
    background-color: #263238;
    color: #cfd8dc;
    padding: 60px 40px 30px 40px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    margin-bottom: 50px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.7;
}

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

.footer-column li {
    margin-bottom: 12px;
}

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

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px auto;
    padding: 30px 0;
    border-top: 1px solid #455a64;
    font-size: 14px;
    line-height: 1.7;
    color: #90a4ae;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #455a64;
    text-align: center;
    font-size: 14px;
}

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

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

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

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

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #1a73e8;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #1557b0;
}

.btn-reject {
    background-color: #546e7a;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #455a64;
}

.page-hero {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    padding: 120px 40px 80px 40px;
    text-align: center;
}

.hero-overlay h1 {
    color: #ffffff;
    font-size: 50px;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero-overlay p {
    color: #e3f2fd;
    font-size: 20px;
}

.split-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 40px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.split-image {
    flex: 1;
    background-color: #fce4ec;
}

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

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

.philosophy-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.philosophy-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.values-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 100px;
    align-items: center;
}

.values-visual {
    flex: 1;
    background-color: #fff3e0;
}

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

.values-content {
    flex: 1;
}

.values-content h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.value-item {
    margin-bottom: 35px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.team-approach {
    background-color: #f1f3f4;
    padding: 100px 40px;
}

.team-approach h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-approach p {
    font-size: 18px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.cta-section {
    background: linear-gradient(135deg, #1a73e8 0%, #1557b0 100%);
    padding: 100px 40px;
    text-align: center;
}

.cta-section h2 {
    color: #ffffff;
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-section p {
    color: #e3f2fd;
    font-size: 19px;
    margin-bottom: 40px;
}

.service-detail-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    display: flex;
    gap: 100px;
    align-items: center;
}

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

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

.service-detail-content h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #1a73e8;
    margin: 30px 0 25px 0;
}

.service-detail-image {
    flex: 1;
    background-color: #e8eaf6;
}

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

.services-hero {
    background: linear-gradient(135deg, #43a047 0%, #2e7d32 100%);
}

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

.additional-services h2 {
    text-align: center;
    font-size: 40px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

.additional-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
}

.additional-item {
    flex: 1;
    background-color: #ffffff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.additional-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.additional-price {
    font-size: 26px;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 20px;
    display: block;
}

.contact-hero {
    background: linear-gradient(135deg, #f57c00 0%, #e65100 100%);
    padding: 100px 40px;
    text-align: center;
}

.contact-hero h1 {
    color: #ffffff;
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 15px;
}

.contact-hero p {
    color: #fff3e0;
    font-size: 20px;
}

.contact-content-split {
    max-width: 1400px;
    margin: 0 auto;
    padding: 100px 40px;
    display: flex;
    gap: 100px;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 40px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-block p {
    font-size: 17px;
    line-height: 1.7;
    color: #546e7a;
}

.contact-note {
    margin-top: 40px;
    padding: 25px;
    background-color: #e3f2fd;
    border-radius: 8px;
}

.contact-note p {
    font-size: 16px;
    line-height: 1.7;
    color: #1a73e8;
}

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

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

.location-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 40px;
}

.location-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

.location-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
}

.thanks-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
}

.thanks-container {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #4caf50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px auto;
}

.thanks-container h1 {
    font-size: 44px;
    margin-bottom: 25px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.service-confirmation {
    background-color: #e8f5e9;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
    font-size: 18px;
    font-weight: 600;
    color: #2e7d32;
}

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

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

.btn-primary {
    display: inline-block;
    background-color: #1a73e8;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #1557b0;
}

.btn-secondary {
    display: inline-block;
    background-color: #546e7a;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #455a64;
}

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

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-page h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

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

.legal-page ul,
.legal-page ol {
    margin: 20px 0 20px 30px;
    color: #546e7a;
}

.legal-page li {
    margin-bottom: 10px;
    line-height: 1.7;
}

@media (max-width: 1024px) {
    .hero-split,
    .approach-split,
    .form-container-split,
    .split-content,
    .values-split,
    .service-detail-split,
    .contact-content-split {
        flex-direction: column;
        gap: 50px;
    }

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

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

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

    .markers-grid,
    .additional-grid {
        flex-direction: column;
    }

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

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }

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