* {
    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: #1a1a1a;
    background-color: #ffffff;
}

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

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1d3557;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.main-nav a:hover {
    color: #2a9d8f;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f8f9fa;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

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

.hero-left, .hero-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left {
    padding: 4rem 5rem;
    background-color: #f8f9fa;
}

.hero-left h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1d3557;
    font-weight: 700;
}

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #4a4a4a;
    max-width: 600px;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

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

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

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

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #e76f51;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-secondary:hover {
    background-color: #d35d40;
    transform: translateY(-2px);
}

.value-split {
    display: flex;
}

.value-image, .value-content {
    flex: 1;
}

.value-image {
    position: relative;
    overflow: hidden;
}

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

.value-content {
    padding: 5rem;
    background-color: #ffffff;
}

.value-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1d3557;
}

.value-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
}

.services-preview {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.services-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.services-intro h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1d3557;
}

.services-intro p {
    font-size: 1.2rem;
    color: #4a4a4a;
}

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

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

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

.service-icon {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

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

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1d3557;
}

.service-card p {
    margin: 0 1.5rem 1.2rem;
    color: #4a4a4a;
    line-height: 1.6;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a9d8f;
    margin: 1rem 1.5rem;
}

.select-service {
    display: block;
    width: calc(100% - 3rem);
    margin: 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #1d3557;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #2a4a6f;
}

.process-split {
    display: flex;
}

.process-content, .process-visual {
    flex: 1;
}

.process-content {
    padding: 5rem;
    background-color: #ffffff;
}

.process-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1d3557;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: #e76f51;
    min-width: 60px;
}

.step h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #1d3557;
}

.step p {
    color: #4a4a4a;
    line-height: 1.6;
}

.process-visual {
    position: relative;
    overflow: hidden;
}

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

.testimonials {
    padding: 5rem 2rem;
    background-color: #1d3557;
    color: #ffffff;
}

.testimonials h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
}

.testimonial-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial cite {
    font-style: normal;
    color: #2a9d8f;
    font-weight: 600;
}

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

.cta-content, .cta-visual {
    flex: 1;
}

.cta-content {
    padding: 5rem;
    background-color: #f4a261;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1d3557;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.cta-visual {
    position: relative;
    overflow: hidden;
}

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

.form-section {
    padding: 5rem 2rem;
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1d3557;
    text-align: center;
}

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

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

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

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

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

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 4rem 2rem 1rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-column {
    flex: 1 1 200px;
}

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2a9d8f;
}

.footer-column p {
    color: #b0b0b0;
    line-height: 1.6;
}

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

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

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

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

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

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    color: #808080;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1d3557;
    color: #ffffff;
    padding: 1.5rem 2rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

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

.cookie-content a {
    color: #2a9d8f;
    text-decoration: underline;
}

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

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

.cookie-accept {
    background-color: #2a9d8f;
    color: #ffffff;
}

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

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

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

.page-hero {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #1d3557;
    color: #ffffff;
}

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

.page-hero p {
    font-size: 1.3rem;
    color: #b0d4e0;
}

.about-split, .mission-split, .team-split {
    display: flex;
}

.about-content, .about-image,
.mission-content, .mission-image,
.team-content, .team-image {
    flex: 1;
}

.about-content, .mission-content, .team-content {
    padding: 5rem;
    background-color: #ffffff;
}

.about-content h2, .mission-content h2, .team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1d3557;
}

.about-content p, .mission-content p, .team-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.about-image, .mission-image, .team-image {
    position: relative;
    overflow: hidden;
}

.about-image img, .mission-image img, .team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 1.5rem);
    min-width: 280px;
    padding: 2.5rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.value-item h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2a9d8f;
}

.value-item p {
    color: #4a4a4a;
    line-height: 1.7;
}

.cta-about {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #2a9d8f;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.cta-about p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.service-detail-split {
    display: flex;
}

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

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

.service-detail-content {
    padding: 5rem;
    background-color: #ffffff;
}

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

.service-detail-content p {
    font-size: 1.1rem;
    margin-bottom: 1.2rem;
    color: #4a4a4a;
    line-height: 1.7;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.price-label {
    font-size: 1rem;
    color: #666;
    font-weight: 600;
}

.price-value {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2a9d8f;
}

.service-detail-image {
    position: relative;
    overflow: hidden;
}

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

.service-cta {
    padding: 5rem 2rem;
    text-align: center;
    background-color: #1d3557;
    color: #ffffff;
}

.service-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.service-cta p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.contact-split {
    display: flex;
    min-height: 600px;
}

.contact-info, .contact-visual {
    flex: 1;
}

.contact-info {
    padding: 5rem;
    background-color: #ffffff;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1d3557;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2a9d8f;
    font-weight: 700;
}

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

.info-note {
    margin-top: 3rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #2a9d8f;
    border-radius: 4px;
}

.info-note p {
    font-size: 1rem;
    color: #4a4a4a;
    line-height: 1.6;
    margin: 0;
}

.contact-visual {
    position: relative;
    overflow: hidden;
}

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

.thanks-section {
    padding: 5rem 2rem;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #f8f9fa;
}

.thanks-content {
    text-align: center;
    max-width: 700px;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
}

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

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

.service-confirmation {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2a9d8f;
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f0fdf9;
    border-radius: 6px;
}

.thanks-next {
    margin: 3rem 0;
    text-align: left;
}

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

.thanks-next ul {
    list-style-position: inside;
    color: #4a4a4a;
    line-height: 2;
}

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

.btn-primary, .btn-secondary {
    padding: 1rem 2rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #2a9d8f;
    color: #ffffff;
}

.btn-primary:hover {
    background-color: #238276;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: #2a9d8f;
    border: 2px solid #2a9d8f;
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1d3557;
}

.update-date {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
    font-style: italic;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #2a9d8f;
}

.legal-page p {
    margin-bottom: 1rem;
    line-height: 1.7;
    color: #4a4a4a;
}

.legal-page ul {
    margin: 1rem 0 1.5rem 2rem;
    line-height: 1.8;
}

.legal-page li {
    margin-bottom: 0.5rem;
    color: #4a4a4a;
}

.cookie-table {
    width: 100%;
    margin: 2rem 0;
    border-collapse: collapse;
}

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

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

.cookie-table td {
    background-color: #ffffff;
    color: #4a4a4a;
}

@media (max-width: 1024px) {
    .hero-split,
    .value-split,
    .process-split,
    .final-cta-split,
    .about-split,
    .mission-split,
    .team-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-left,
    .value-content,
    .process-content,
    .cta-content,
    .about-content,
    .mission-content,
    .team-content,
    .service-detail-content,
    .contact-info {
        padding: 3rem 2rem;
    }

    .hero-right,
    .value-image,
    .process-visual,
    .cta-visual,
    .about-image,
    .mission-image,
    .team-image,
    .service-detail-image,
    .contact-visual {
        min-height: 400px;
    }

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

    .testimonial {
        flex: 1 1 100%;
    }

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

@media (max-width: 768px) {
    .header-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .main-nav {
        width: 100%;
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-left h1 {
        font-size: 2rem;
    }

    .hero-left p {
        font-size: 1rem;
    }

    .services-intro h2,
    .values h2,
    .testimonials h2 {
        font-size: 2rem;
    }

    .thanks-content {
        padding: 2rem 1.5rem;
    }

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

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

    .cookie-accept,
    .cookie-reject {
        width: 100%;
    }
}