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

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

.header-left {
    display: flex;
    align-items: center;
}

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-notice {
    font-size: 0.75rem;
    color: #666;
    padding: 0.4rem 0.8rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.hero-content {
    flex: 1;
    padding: 4rem 5%;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.hero-visual {
    flex: 1;
    min-height: 85vh;
    background-color: #e0e7ef;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.intro-alternate {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
}

.intro-image {
    flex: 1;
    background-color: #e8eef3;
}

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

.intro-text {
    flex: 1;
    padding: 0 4rem;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.services-grid {
    padding: 5rem 5%;
    background-color: #fafafa;
}

.section-header-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-header-center p {
    font-size: 1.1rem;
    color: #4a5568;
}

.services-container {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(50% - 1rem);
    min-width: 400px;
    max-width: 550px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.service-image {
    width: 100%;
    height: 240px;
    background-color: #e8eef3;
}

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

.service-info {
    padding: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.service-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a73e8;
    margin-bottom: 1.5rem;
}

.btn-select {
    width: 100%;
    padding: 0.9rem;
    background-color: #34a853;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-select:hover {
    background-color: #2d8e47;
}

.cta-inline {
    padding: 4rem 5%;
    text-align: center;
    background-color: #1a73e8;
    color: #ffffff;
}

.cta-inline h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-inline p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto;
}

.form-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.form-container-split {
    display: flex;
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.form-description {
    flex: 1;
}

.form-description h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.form-description p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.form-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature-icon {
    font-size: 1.2rem;
    color: #34a853;
    font-weight: 700;
}

.form-panel {
    flex: 1;
    background-color: #f8f9fa;
    padding: 2.5rem;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 1.5rem;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
}

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

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

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

.trust-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

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

.trust-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 1.1rem;
    color: #4a5568;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 3rem 5% 1rem;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-column {
    flex: 1;
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #b8b8b8;
}

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

.footer-column ul li {
    margin-bottom: 0.6rem;
}

.footer-column ul li a {
    color: #b8b8b8;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #b8b8b8;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #b8b8b8;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    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: 2rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    font-size: 0.95rem;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-accept {
    background-color: #34a853;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #2d8e47;
}

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

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

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

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 1.2rem;
    color: #4a5568;
    max-width: 700px;
    margin: 0 auto;
}

.services-detailed {
    padding: 3rem 5%;
}

.service-detail-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem 0;
}

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

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

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #4a5568;
}

.service-pricing {
    margin-top: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.price-label {
    font-weight: 600;
    color: #2c3e50;
    margin-right: 0.8rem;
}

.price-value {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a73e8;
}

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

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.cta-services {
    padding: 4rem 5%;
    text-align: center;
    background-color: #1a73e8;
    color: #ffffff;
}

.cta-services h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-services p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.about-intro {
    display: flex;
    align-items: center;
    padding: 5rem 5%;
}

.about-content {
    flex: 1;
    padding-right: 3rem;
}

.about-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #4a5568;
}

.about-image {
    flex: 1;
    background-color: #e8eef3;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.approach-section {
    padding: 5rem 5%;
    background-color: #fafafa;
}

.approach-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.approach-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 300px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.approach-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a73e8;
}

.approach-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.experience-section {
    padding: 5rem 5%;
}

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

.experience-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.experience-content p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #4a5568;
}

.values-section {
    padding: 5rem 5%;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-split {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.value-block {
    flex: 1;
    padding: 2.5rem;
    background-color: #ffffff;
    border-left: 4px solid #1a73e8;
}

.value-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.value-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.cta-about {
    padding: 4rem 5%;
    text-align: center;
}

.cta-about h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-page {
    padding: 3rem 5%;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-header h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-header p {
    font-size: 1.1rem;
    color: #4a5568;
}

.contact-layout {
    display: flex;
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 2.5rem;
}

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a73e8;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #4a5568;
}

.info-note {
    font-size: 0.9rem;
    color: #6b7280;
    margin-top: 0.5rem;
}

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

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.contact-cta {
    padding: 3rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

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

.legal-content h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #4a5568;
}

.legal-content ul,
.legal-content ol {
    margin-bottom: 1rem;
    padding-left: 2rem;
}

.legal-content li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #4a5568;
}

.legal-content a {
    color: #1a73e8;
    text-decoration: none;
}

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

.legal-date {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5rem 5%;
}

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

.thanks-icon {
    font-size: 4rem;
    color: #34a853;
    margin-bottom: 1.5rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-message {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: #4a5568;
}

.thanks-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #4a5568;
}

.thanks-next {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    text-align: left;
}

.thanks-next h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.thanks-next ol {
    padding-left: 1.5rem;
}

.thanks-next li {
    margin-bottom: 0.8rem;
    line-height: 1.6;
    color: #4a5568;
}

.thanks-actions {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.btn-primary {
    padding: 1rem 2rem;
    background-color: #1a73e8;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    padding: 1rem 2rem;
    background-color: #f8f9fa;
    color: #2c3e50;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 1px solid #d1d5db;
    transition: background-color 0.3s;
}

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

@media (max-width: 968px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .header-right {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split {
        flex-direction: column;
    }

    .hero-visual {
        min-height: 400px;
    }

    .intro-alternate {
        flex-direction: column;
    }

    .intro-text {
        padding: 2rem 0;
    }

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

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

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

    .about-intro {
        flex-direction: column;
    }

    .about-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .values-split {
        flex-direction: column;
    }

    .contact-layout {
        flex-direction: column;
    }

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