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

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
    padding: 20px 0;
}

.nav-disclaimer {
    font-size: 11px;
    color: #95a5a6;
    padding: 0 20px;
    font-style: italic;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #546e7a;
}

.hero-image {
    flex: 1;
    background-color: #e0e0e0;
    overflow: hidden;
}

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

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

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

.intro-text {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-text h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.intro-text p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #546e7a;
}

.split-feature {
    display: flex;
    min-height: 500px;
}

.split-left {
    flex-direction: row;
}

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

.split-image-container {
    flex: 1;
    background-color: #eceff1;
    overflow: hidden;
}

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

.split-text-container {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.split-text-container h2,
.split-text-container h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.split-text-container p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #546e7a;
}

.services-showcase {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

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

.services-showcase h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 30px);
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    flex-direction: column;
}

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

.service-card h3 {
    font-size: 22px;
    padding: 20px 20px 10px;
    color: #2c3e50;
}

.service-card p {
    padding: 0 20px;
    flex-grow: 1;
    color: #546e7a;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
    padding: 20px;
    text-align: center;
}

.btn-service {
    margin: 0 20px 20px;
    background-color: #3498db;
    color: #ffffff;
    padding: 14px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.form-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.container-form {
    max-width: 600px;
    margin: 0 auto;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

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

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

.trust-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.trust-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.trust-item {
    flex: 1 1 calc(33.333% - 40px);
    text-align: center;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.trust-item p {
    font-size: 16px;
    color: #546e7a;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 20px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1 1 250px;
}

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

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

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

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

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

.footer-col p {
    color: #bdc3c7;
    line-height: 1.8;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 30px;
    padding: 20px;
    background-color: rgba(0,0,0,0.1);
    border-radius: 4px;
    font-size: 13px;
    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: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    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;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #3498db;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.page-header {
    background-color: #f8f9fa;
    padding: 60px 20px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    color: #2c3e50;
}

.about-intro {
    padding: 60px 20px;
    background-color: #ffffff;
}

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

.values-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 40px);
    background-color: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

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

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

.experience-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.experience-section h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.experience-section p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #546e7a;
}

.services-detail {
    padding: 40px 20px;
}

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

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

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

.service-text {
    flex: 1;
}

.service-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.service-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #546e7a;
}

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

.service-note {
    font-size: 14px;
    font-style: italic;
    color: #95a5a6;
    margin-bottom: 24px;
}

.cta-section {
    padding: 80px 20px;
    background-color: #3498db;
    text-align: center;
}

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

.cta-section p {
    font-size: 20px;
    color: #ecf0f1;
    margin-bottom: 32px;
}

.cta-section .btn-primary {
    background-color: #ffffff;
    color: #3498db;
}

.cta-section .btn-primary:hover {
    background-color: #ecf0f1;
}

.contact-info-section {
    padding: 60px 20px;
    background-color: #ffffff;
}

.contact-grid {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-detail {
    flex: 1 1 calc(33.333% - 60px);
}

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

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

.contact-info-text {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.contact-info-text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-info-text p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #546e7a;
}

.map-placeholder {
    padding: 60px 20px;
    background-color: #ffffff;
}

.map-info {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.map-info p {
    font-size: 17px;
    color: #546e7a;
}

.thanks-section {
    padding: 120px 20px;
    background-color: #f8f9fa;
    min-height: 500px;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

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

.thanks-content p {
    font-size: 20px;
    margin-bottom: 16px;
    color: #546e7a;
}

.thanks-service {
    margin: 32px 0;
    padding: 20px;
    background-color: #e8f5e9;
    border-radius: 4px;
}

.thanks-service p {
    color: #2c3e50;
    font-weight: 600;
}

.legal-page {
    padding: 40px 20px 80px;
    background-color: #ffffff;
}

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

.legal-page h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

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

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

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

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

.legal-page em {
    display: block;
    margin-top: 40px;
    font-size: 14px;
    color: #95a5a6;
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 20px 0;
        gap: 10px;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

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

    .hero-content {
        padding: 40px 20px;
    }

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

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

    .split-left,
    .split-right {
        flex-direction: column;
    }

    .split-text-container {
        padding: 40px 20px;
    }

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

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

    .trust-item {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        width: 100%;
        flex-direction: column;
    }

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

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

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

    .service-image img {
        height: 300px;
    }

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

    .contact-detail {
        flex: 1 1 100%;
    }
}