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

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

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

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

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 60px 5%;
    gap: 60px;
}

.hero-left {
    flex: 1;
}

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

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

.hero-right {
    flex: 1;
    background-color: #ecf0f1;
}

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

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

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

.value-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: #f8f9fa;
}

.value-split.reverse {
    flex-direction: row-reverse;
}

.value-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.value-content {
    flex: 1;
}

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

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

.services-overview {
    padding: 80px 5%;
    background-color: #ffffff;
}

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

.services-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a252f;
}

.services-header p {
    font-size: 20px;
    color: #546e7a;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 27px);
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    min-width: 280px;
}

.service-card img {
    width: 100%;
    height: auto;
    margin-bottom: 20px;
    border-radius: 4px;
    object-fit: cover;
    background-color: #dee2e6;
}

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

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

.service-card .price {
    display: block;
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service {
    padding: 12px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

.trust-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: #ecf0f1;
}

.trust-content {
    flex: 1;
}

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

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

.trust-visual {
    flex: 1;
    background-color: #bdc3c7;
}

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

.cta-form-section {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    background-color: #ffffff;
}

.form-left {
    flex: 1;
}

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

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

.form-right {
    flex: 1;
}

.main-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.main-form label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
}

.main-form select,
.main-form input {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: inherit;
}

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

.submit-btn {
    padding: 16px 36px;
    background-color: #27ae60;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.footer-col {
    flex: 1;
}

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

.footer-col p {
    font-size: 15px;
    line-height: 1.7;
    color: #95a5a6;
}

.footer-col a {
    display: block;
    color: #95a5a6;
    text-decoration: none;
    margin-bottom: 10px;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    padding: 24px;
    background-color: #0f1419;
    border-radius: 4px;
    margin-bottom: 24px;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px 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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    font-size: 15px;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

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

.page-hero-split {
    display: flex;
    min-height: 70vh;
    align-items: center;
    padding: 60px 5%;
    gap: 60px;
    background-color: #f8f9fa;
}

.about-story-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: #ffffff;
}

.story-content {
    flex: 1;
}

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

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

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

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

.values-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: center;
    background-color: #ecf0f1;
}

.values-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

.values-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.values-content {
    flex: 1;
}

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

.values-list {
    list-style: none;
}

.values-list li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #546e7a;
    padding-left: 0;
}

.values-list li strong {
    color: #1a252f;
}

.team-approach {
    padding: 80px 5%;
    background-color: #ffffff;
}

.team-approach h2 {
    font-size: 38px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.team-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.team-text {
    flex: 1;
}

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

.team-visual {
    flex: 1;
    background-color: #dee2e6;
}

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

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

.cta-secondary h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
}

.cta-secondary p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #546e7a;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #2980b9;
}

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

.services-hero h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a252f;
}

.services-hero p {
    font-size: 20px;
    color: #546e7a;
}

.services-detailed {
    background-color: #ffffff;
}

.service-block-split {
    display: flex;
    padding: 60px 5%;
    gap: 60px;
    align-items: center;
}

.service-block-split.reverse {
    flex-direction: row-reverse;
    background-color: #f8f9fa;
}

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

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

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

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

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

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin: 24px 0;
}

.price-label {
    font-size: 16px;
    color: #546e7a;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

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

.services-cta-form h2 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #1a252f;
}

.services-cta-form p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #546e7a;
}

.services-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.services-form label {
    font-size: 16px;
    font-weight: 600;
    color: #2c3e50;
    text-align: left;
}

.services-form select,
.services-form input {
    padding: 14px;
    font-size: 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-family: inherit;
}

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

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

.contact-hero h1 {
    font-size: 46px;
    margin-bottom: 16px;
    color: #1a252f;
}

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

.contact-split {
    display: flex;
    padding: 80px 5%;
    gap: 60px;
    align-items: flex-start;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a252f;
}

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

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

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

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

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

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 5%;
    background-color: #f8f9fa;
}

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

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

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

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

.cta-secondary-link {
    display: inline-block;
    padding: 16px 36px;
    background-color: #7f8c8d;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-secondary-link:hover {
    background-color: #6c7a7b;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 80px 5%;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a252f;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content li {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #546e7a;
}

.legal-content a {
    color: #3498db;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #dee2e6;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 600;
    color: #1a252f;
}

.cookie-table td {
    font-size: 16px;
    color: #546e7a;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .trust-split,
    .cta-form-section,
    .page-hero-split,
    .about-story-split,
    .values-split,
    .team-split,
    .service-block-split,
    .contact-split {
        flex-direction: column;
    }

    .value-split.reverse,
    .values-split.reverse,
    .service-block-split.reverse {
        flex-direction: column;
    }

    .hero-left h1,
    .services-hero h1,
    .contact-hero h1 {
        font-size: 32px;
    }

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

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

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }

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