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

.main-nav {
    background-color: #2c3e50;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    text-decoration: none;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #ecf0f1;
    padding: 0.3rem 0.8rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

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

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

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

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

.hero-left {
    flex: 1;
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ecf0f1;
}

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

.hero-left p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-right {
    flex: 1;
    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: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.intro-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.intro-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

.services-split {
    background-color: #f8f9fa;
}

.service-row {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

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

.service-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #ffffff;
}

.service-content.left {
    background-color: #f8f9fa;
}

.service-content.right {
    background-color: #ffffff;
}

.service-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.price-tag {
    font-size: 1.4rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

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

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

.select-service-btn {
    padding: 0.9rem 2rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.trust-section {
    padding: 5rem 2rem;
    background-color: #2c3e50;
}

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

.trust-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 3rem;
    text-align: center;
}

.trust-grid {
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 280px;
    max-width: 350px;
}

.trust-item h3 {
    font-size: 1.5rem;
    color: #3498db;
    margin-bottom: 1rem;
}

.trust-item p {
    color: #ecf0f1;
    font-size: 1rem;
    line-height: 1.7;
}

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

.form-container {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.form-left-content {
    flex: 1;
}

.form-left-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-left-content p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.7;
}

.form-right {
    flex: 1;
}

.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.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 {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

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

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

.disclaimer-section {
    padding: 3rem 2rem;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
}

.disclaimer-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #856404;
    text-align: center;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

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

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

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #3498db;
}

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

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

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

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

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #34495e;
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    transition: transform 0.3s ease;
}

.cookie-banner.hidden {
    transform: translateY(100%);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 0.95rem;
    line-height: 1.5;
}

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

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

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

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

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

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

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

.page-header {
    padding: 4rem 2rem;
    background-color: #2c3e50;
    text-align: center;
}

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

.subtitle {
    font-size: 1.2rem;
    color: #ecf0f1;
}

.about-split {
    background-color: #ffffff;
}

.about-row {
    display: flex;
    min-height: 500px;
    align-items: stretch;
}

.about-row.reverse {
    flex-direction: row-reverse;
}

.about-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.2rem;
    color: #555;
}

.about-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.cta-section {
    padding: 5rem 2rem;
    background-color: #3498db;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    color: #ecf0f1;
    margin-bottom: 2rem;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #3498db;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.cta-button:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

.services-list {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
}

.service-card {
    max-width: 1200px;
    margin: 0 auto 3rem;
    display: flex;
    min-height: 350px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
}

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

.service-card-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

.service-card-content {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.service-card-content p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    color: #555;
}

.price-display {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

.contact-split {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 4rem;
}

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 3rem;
}

.contact-block h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
}

.contact-visual {
    flex: 1;
    min-height: 600px;
    border-radius: 8px;
    overflow: hidden;
}

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

.location-note {
    padding: 4rem 2rem;
    background-color: #ecf0f1;
}

.location-note h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.location-note p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #555;
    text-align: center;
}

.thanks-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

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

.thanks-icon {
    font-size: 5rem;
    color: #27ae60;
    margin-bottom: 2rem;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.7;
    margin-bottom: 2rem;
}

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

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

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

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

.btn-secondary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #95a5a6;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 3rem 2rem;
    min-height: 60vh;
}

.legal-page h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    color: #34495e;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page h3 {
    font-size: 1.4rem;
    color: #34495e;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

.legal-page p {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1rem;
}

.legal-page ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-page li {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

.last-update {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid #ddd;
    font-style: italic;
    color: #7f8c8d;
}

@media (max-width: 968px) {
    .hero-split,
    .service-row,
    .about-row,
    .service-card,
    .contact-split,
    .form-container {
        flex-direction: column;
    }

    .service-row.reverse,
    .about-row.reverse,
    .service-card.reverse {
        flex-direction: column;
    }

    .hero-left,
    .service-content,
    .about-content,
    .service-card-content {
        padding: 3rem 2rem;
    }

    .hero-left h1,
    .page-header h1 {
        font-size: 2.2rem;
    }

    .service-content h2,
    .about-content h2 {
        font-size: 1.8rem;
    }

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

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .cookie-buttons {
        justify-content: center;
    }
}