* {
    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;
    color: #6c757d;
    text-align: center;
    padding: 8px;
    font-size: 12px;
    border-bottom: 1px solid #e9ecef;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: rgba(255, 255, 255, 0.98);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

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

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

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

.hero-visual {
    position: relative;
    width: 100%;
    height: 90vh;
    overflow: hidden;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    z-index: 10;
    width: 90%;
    max-width: 800px;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.hero-overlay p {
    font-size: 22px;
    margin-bottom: 35px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

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

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: transparent;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border: 2px solid #3498db;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-secondary:hover {
    background-color: #3498db;
    color: #ffffff;
}

.story-block {
    padding: 100px 20px;
    background-color: #f8f9fa;
}

.story-narrow {
    max-width: 700px;
    margin: 0 auto;
}

.story-narrow h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

.story-narrow p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.image-text-overlay {
    position: relative;
    display: flex;
    align-items: center;
    padding: 80px 40px;
    min-height: 500px;
}

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

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

.text-overlay-card {
    position: absolute;
    right: 80px;
    max-width: 450px;
    background-color: #ffffff;
    padding: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.text-overlay-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.text-overlay-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #495057;
}

.text-overlay-card a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-overlay-card a:hover {
    color: #2980b9;
}

.trust-signal-row {
    display: flex;
    justify-content: center;
    gap: 60px;
    padding: 80px 40px;
    background-color: #ffffff;
}

.trust-item {
    text-align: center;
    max-width: 300px;
}

.trust-icon {
    width: 60px;
    height: 60px;
    background-color: #27ae60;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
    font-size: 30px;
    font-weight: 700;
}

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

.trust-item p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.testimonial-visual {
    position: relative;
    padding: 120px 40px;
    background-color: #2c3e50;
}

.testimonial-bg {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-bg img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    opacity: 0.3;
}

.testimonial-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #ffffff;
    max-width: 700px;
}

.testimonial-content blockquote {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 20px;
}

.testimonial-content cite {
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
}

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

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

.reveal-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

.reveal-header p {
    font-size: 18px;
    color: #6c757d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    flex: 1 1 calc(33.333% - 30px);
    max-width: 400px;
    min-width: 300px;
}

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

.card-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #ecf0f1;
}

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

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #495057;
}

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

.select-service {
    width: 100%;
    padding: 14px 30px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

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

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

.form-container > p {
    text-align: center;
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    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: #3498db;
}

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

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

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

.footer-content {
    display: flex;
    justify-content: space-between;
    max-width: 1400px;
    margin: 0 auto 40px;
    gap: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

.footer-col ul li a {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 30px;
    padding: 20px 0;
    border-top: 1px solid #34495e;
    font-size: 13px;
    line-height: 1.6;
    color: #95a5a6;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

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

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

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

.cookie-content h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.cookie-content p {
    font-size: 14px;
    margin-bottom: 20px;
    color: #495057;
}

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

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

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

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

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

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

.cookie-content a {
    font-size: 13px;
    color: #3498db;
    text-decoration: none;
}

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

.page-hero {
    position: relative;
    width: 100%;
    height: 50vh;
    overflow: hidden;
}

.page-hero-simple {
    padding: 100px 40px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.page-hero-simple h1 {
    font-size: 48px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-hero-simple p {
    font-size: 18px;
    color: #6c757d;
}

.about-story {
    padding: 80px 40px;
    background-color: #ffffff;
}

.values-visual {
    padding: 60px 40px;
    background-color: #f8f9fa;
}

.value-block {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 80px;
    align-items: center;
}

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

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

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

.value-text {
    flex: 1;
}

.value-text h3 {
    font-size: 30px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.value-text p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #495057;
}

.team-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

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

.section-header h2 {
    font-size: 36px;
    color: #2c3e50;
}

.team-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.team-member p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 15px;
    color: #495057;
}

.team-member strong {
    color: #2c3e50;
}

.cta-about {
    padding: 80px 40px;
    text-align: center;
    background-color: #3498db;
    color: #ffffff;
}

.cta-about h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-about p {
    font-size: 18px;
    margin-bottom: 35px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.services-detailed {
    padding: 60px 40px;
    background-color: #ffffff;
}

.service-detail {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 100px;
    align-items: center;
}

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

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

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

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

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 25px;
    color: #495057;
}

.service-detail-content ul {
    margin-bottom: 25px;
    padding-left: 20px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 8px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
}

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

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

.service-cta-final {
    padding: 80px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.service-cta-final h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-cta-final p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #6c757d;
}

.contact-content {
    padding: 60px 40px;
    background-color: #ffffff;
}

.contact-info-block {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #2c3e50;
}

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

.contact-item {
    flex: 1;
    min-width: 280px;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.contact-item .note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 10px;
}

.contact-map-placeholder {
    max-width: 1200px;
    margin: 0 auto;
    height: 400px;
    background-color: #ecf0f1;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    background-color: rgba(52, 152, 219, 0.9);
    padding: 40px 60px;
    border-radius: 8px;
    color: #ffffff;
}

.map-overlay p {
    font-size: 18px;
    line-height: 1.6;
}

.contact-cta {
    padding: 80px 40px;
    text-align: center;
    background-color: #f8f9fa;
}

.contact-cta h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #6c757d;
}

.thanks-section {
    padding: 120px 40px;
    background-color: #f8f9fa;
    min-height: 70vh;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background-color: #27ae60;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 30px;
    font-size: 50px;
    font-weight: 700;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #495057;
}

.thanks-details {
    margin-bottom: 40px;
}

.service-confirmation {
    font-size: 20px;
    padding: 20px;
    background-color: #d4edda;
    border-radius: 8px;
    color: #155724;
}

.thanks-next {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 40px;
    padding: 30px;
    background-color: #ffffff;
    border-radius: 8px;
}

.thanks-next h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-next ul {
    list-style-position: inside;
}

.thanks-next ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 12px;
    color: #495057;
}

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

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

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

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

.legal-intro {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-container h2 {
    font-size: 28px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: #495057;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 10px;
    color: #495057;
}

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

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

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

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

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

.cookie-table td {
    font-size: 15px;
    color: #495057;
}

@media (max-width: 768px) {
    .nav-floating {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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

    .hero-overlay p {
        font-size: 18px;
    }

    .trust-signal-row {
        flex-direction: column;
        gap: 40px;
    }

    .service-cards {
        flex-direction: column;
    }

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

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

    .text-overlay-card {
        position: static;
        margin-top: -50px;
    }

    .footer-content {
        flex-direction: column;
    }

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

    .cookie-buttons {
        flex-direction: column;
    }

    .cta-buttons,
    .thanks-actions {
        flex-direction: column;
    }
}