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

.main-nav {
    background-color: #ffffff;
    padding: 20px 0;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #27ae60;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #27ae60;
}

.hero-section {
    background-color: #f8f9fa;
    padding: 0;
}

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

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    padding: 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
}

.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.content-wrapper.narrow {
    max-width: 800px;
}

.content-wrapper.wide {
    max-width: 1400px;
}

.intro-block {
    padding: 80px 0;
    background-color: #ffffff;
}

.intro-block h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.intro-block p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.services-preview {
    padding: 100px 0;
    background-color: #f8f9fa;
}

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

.section-header.centered {
    text-align: center;
}

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

.section-header p {
    font-size: 20px;
    color: #7f8c8d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

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

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

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.card-content p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 20px;
    flex-grow: 1;
}

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

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

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

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

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.form-section p {
    font-size: 18px;
    margin-bottom: 40px;
    color: #7f8c8d;
}

.selected-service-display {
    background-color: #d5f4e6;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 30px;
}

.selected-service-display p {
    margin-bottom: 10px;
    color: #27ae60;
}

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

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px;
    font-size: 16px;
    border: 1px solid #bdc3c7;
    border-radius: 5px;
    font-family: inherit;
}

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

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

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

.trust-block {
    padding: 100px 0;
    background-color: #ecf0f1;
}

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

.trust-text {
    flex: 1;
}

.trust-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.trust-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

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

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

.cta-final {
    padding: 80px 0;
    background-color: #27ae60;
    color: #ffffff;
}

.cta-final h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-final p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-link {
    display: inline-block;
    background-color: #ffffff;
    color: #27ae60;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s, color 0.3s;
}

.cta-link:hover {
    background-color: #ecf0f1;
}

.centered {
    text-align: center;
}

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

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

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

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
}

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

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

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

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 20px 0;
    border-top: 1px solid #34495e;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    margin-bottom: 15px;
}

.disclaimer {
    font-size: 12px;
    color: #95a5a6;
    font-style: italic;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #34495e;
    color: #ffffff;
    padding: 20px;
    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: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
}

.cookie-content a {
    color: #27ae60;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

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

.page-header {
    background-color: #34495e;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-header p {
    font-size: 20px;
    color: #ecf0f1;
}

.about-intro {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.about-values {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

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

.value-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #27ae60;
}

.value-item p {
    font-size: 16px;
    color: #7f8c8d;
    line-height: 1.8;
}

.about-team {
    padding: 80px 0;
    background-color: #ffffff;
}

.about-team h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #2c3e50;
}

.about-team p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.about-approach {
    padding: 80px 0;
    background-color: #ecf0f1;
}

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

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

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

.approach-text {
    flex: 1;
}

.approach-text h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-text p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

.cta-section {
    padding: 80px 0;
    background-color: #27ae60;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    margin-bottom: 30px;
}

.cta-button {
    display: inline-block;
    background-color: #ffffff;
    color: #27ae60;
    padding: 15px 40px;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 5px;
    transition: background-color 0.3s;
}

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

.cta-button.secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.cta-button.secondary:hover {
    background-color: #ffffff;
    color: #27ae60;
}

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

.service-detail-block {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 100px;
}

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

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

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

.service-detail-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #34495e;
}

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

.service-detail-content ul li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

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

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

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

.contact-info-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.contact-details {
    flex: 1;
}

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

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #27ae60;
}

.contact-item p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.8;
}

.contact-note {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.contact-note p {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

.map-placeholder {
    padding: 60px 0;
    background-color: #ecf0f1;
}

.map-box {
    background-color: #bdc3c7;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
}

.map-box p {
    font-size: 20px;
    color: #7f8c8d;
}

.thanks-section {
    padding: 120px 0;
    background-color: #ffffff;
}

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

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

.thanks-section p {
    font-size: 18px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.thanks-details {
    background-color: #d5f4e6;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 50px;
}

.thanks-details p {
    color: #27ae60;
    font-size: 16px;
    margin-bottom: 10px;
}

.thanks-next-steps {
    margin-bottom: 50px;
}

.thanks-next-steps h2 {
    font-size: 28px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.thanks-next-steps ul {
    padding-left: 20px;
}

.thanks-next-steps ul li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 15px;
}

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

.legal-content {
    padding: 80px 0;
    background-color: #ffffff;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #34495e;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #27ae60;
}

.legal-content p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #7f8c8d;
    line-height: 1.8;
}

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

.legal-content ul li {
    font-size: 16px;
    color: #7f8c8d;
    margin-bottom: 10px;
}

.legal-content a {
    color: #27ae60;
    text-decoration: underline;
}

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

.cookie-table thead th {
    background-color: #34495e;
    color: #ffffff;
    padding: 15px;
    text-align: left;
    font-size: 16px;
}

.cookie-table tbody td {
    padding: 15px;
    border-bottom: 1px solid #ecf0f1;
    font-size: 14px;
    color: #7f8c8d;
}

@media (max-width: 768px) {
    .hero-overlay h1 {
        font-size: 32px;
    }

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

    .nav-links {
        flex-direction: column;
        gap: 15px;
    }

    .trust-content-split,
    .approach-split,
    .service-detail-block,
    .contact-layout {
        flex-direction: column;
    }

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

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

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

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