* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #1a4d7a;
    --secondary-color: #2c7ab5;
    --accent-color: #e67e22;
    --text-dark: #2c3e50;
    --text-light: #555;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --success-color: #27ae60;
    --shadow: 0 2px 8px rgba(0,0,0,0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
}

.ad-notice {
    background-color: #ffeaa7;
    color: #2d3436;
    text-align: center;
    padding: 8px;
    font-size: 14px;
    font-weight: 500;
    border-bottom: 1px solid #fdcb6e;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.header-right {
    display: flex;
    gap: 30px;
}

.header-right a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

.header-right a:hover {
    color: var(--secondary-color);
}

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

.hero-content {
    flex: 1;
    padding: 60px 5% 60px 8%;
    background-color: var(--bg-light);
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.hero-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 30px;
    max-width: 550px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-primary:hover {
    background-color: var(--primary-color);
    cursor: pointer;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #d35400;
    cursor: pointer;
}

.intro-split {
    display: flex;
    align-items: center;
}

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

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

.intro-content {
    flex: 1;
    padding: 60px 8% 60px 5%;
}

.intro-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.intro-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.services-preview {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

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

.section-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

.service-card {
    background-color: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    width: calc(33.333% - 20px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background-color: #bdc3c7;
}

.service-card h3 {
    font-size: 22px;
    margin: 20px 20px 10px;
    color: var(--primary-color);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 20px 15px;
    flex-grow: 1;
}

.service-card .price {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent-color);
    margin: 0 20px 15px;
}

.service-card .select-service {
    margin: 0 20px 20px;
    padding: 12px;
    background-color: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.service-card .select-service:hover {
    background-color: var(--primary-color);
}

.form-section-split {
    display: flex;
}

.form-visual {
    flex: 1;
    background-color: #95a5a6;
}

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

.form-container {
    flex: 1;
    padding: 60px 5%;
    background-color: var(--bg-white);
}

.form-container h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.form-intro {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 30px;
}

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

.selected-service-display {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.selected-service-display strong {
    display: block;
    margin-bottom: 5px;
    color: #155724;
}

.selected-service-display span {
    color: #155724;
    margin-right: 15px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.btn-submit {
    padding: 14px;
    background-color: var(--success-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-submit:disabled {
    background-color: #95a5a6;
    cursor: not-allowed;
}

.why-us-split {
    display: flex;
    align-items: center;
    background-color: var(--bg-light);
}

.why-content {
    flex: 1;
    padding: 60px 5%;
}

.why-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.reasons-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.reason-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.reason-item p {
    font-size: 16px;
    color: var(--text-light);
}

.why-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.cta-final {
    text-align: center;
    padding: 80px 5%;
    background-color: var(--primary-color);
    color: white;
}

.cta-final h2 {
    font-size: 34px;
    margin-bottom: 15px;
}

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

.footer {
    background-color: #2c3e50;
    color: white;
    padding: 50px 5% 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
}

.footer-col p,
.footer-col a {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.8;
    text-decoration: none;
}

.footer-col a {
    display: block;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: white;
}

.email-text {
    font-style: normal;
    color: #bdc3c7;
    cursor: default;
}

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

.footer-bottom .disclaimer {
    font-size: 13px;
    color: #95a5a6;
    margin-bottom: 15px;
    line-height: 1.6;
}

.footer-bottom p {
    font-size: 14px;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(44, 62, 80, 0.95);
    color: white;
    padding: 20px;
    display: none;
    z-index: 1000;
}

.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: #74b9ff;
    text-decoration: underline;
}

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

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

.btn-accept {
    background-color: var(--success-color);
    color: white;
}

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

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

.btn-reject:hover {
    background-color: #636e72;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    align-items: center;
}

.page-hero-content {
    flex: 1;
    padding: 60px 5% 60px 8%;
    background-color: var(--bg-light);
}

.page-hero-content h1 {
    font-size: 38px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-hero-content p {
    font-size: 18px;
    color: var(--text-light);
}

.page-hero-image {
    flex: 1;
    background-color: #95a5a6;
}

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

.about-content-split {
    display: flex;
    align-items: center;
    padding: 60px 5%;
}

.about-text {
    flex: 1;
    padding-right: 5%;
}

.about-text h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 18px;
}

.about-image {
    flex: 1;
    background-color: #bdc3c7;
}

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

.values-section {
    padding: 60px 5%;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 32px;
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 40px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.value-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.value-card p {
    font-size: 15px;
    color: var(--text-light);
}

.methodology-split {
    display: flex;
    align-items: center;
    padding: 60px 5%;
}

.methodology-image {
    flex: 1;
    background-color: #95a5a6;
}

.methodology-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.methodology-content {
    flex: 1;
    padding-left: 5%;
}

.methodology-content h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 8px;
}

.step p {
    font-size: 15px;
    color: var(--text-light);
}

.team-intro {
    padding: 60px 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.team-intro h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.team-description {
    font-size: 17px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 15px;
}

.team-intro p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.cta-about {
    text-align: center;
    padding: 80px 5%;
    background-color: var(--secondary-color);
    color: white;
}

.cta-about h2 {
    font-size: 32px;
    margin-bottom: 25px;
}

.page-hero-simple {
    text-align: center;
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.page-hero-simple h1 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.page-hero-simple p {
    font-size: 18px;
    color: var(--text-light);
}

.services-detail {
    padding: 60px 5%;
}

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

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

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

.service-detail-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.price-tag {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 15px;
}

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

.service-detail-content li {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 8px;
}

.btn-service {
    display: inline-block;
    padding: 12px 28px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-service:hover {
    background-color: var(--primary-color);
}

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

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

.pricing-note {
    background-color: var(--bg-light);
    padding: 40px 5%;
    text-align: center;
}

.pricing-note h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.pricing-note p {
    font-size: 16px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto 15px;
}

.cta-services {
    text-align: center;
    padding: 80px 5%;
    background-color: var(--accent-color);
    color: white;
}

.cta-services h2 {
    font-size: 32px;
    margin-bottom: 15px;
}

.cta-services p {
    font-size: 18px;
    margin-bottom: 25px;
}

.contact-split {
    display: flex;
    padding: 60px 5%;
    gap: 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.info-block p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: #95a5a6;
}

.contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.location-info {
    padding: 60px 5%;
    background-color: var(--bg-light);
}

.location-info h2 {
    font-size: 30px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.location-details {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.transport-option {
    flex: 1;
    min-width: 250px;
    background-color: var(--bg-white);
    padding: 25px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.transport-option h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 10px;
}

.transport-option p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-cta {
    text-align: center;
    padding: 80px 5%;
}

.contact-cta h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.contact-cta p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 25px;
}

.thanks-hero {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

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

.thanks-content h1 {
    font-size: 42px;
    color: var(--success-color);
    margin-bottom: 15px;
}

.lead-text {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.confirmation-box {
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    margin-bottom: 40px;
    text-align: left;
}

.confirmation-box h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.step-text h3 {
    font-size: 18px;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.step-text p {
    font-size: 15px;
    color: var(--text-light);
}

.service-reminder {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: none;
}

.service-reminder h3 {
    font-size: 20px;
    color: #155724;
    margin-bottom: 10px;
}

.service-reminder p {
    font-size: 16px;
    color: #155724;
    margin-bottom: 5px;
}

.price-reminder {
    font-weight: 700;
    font-size: 24px;
}

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

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background-color: var(--secondary-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: var(--primary-color);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background-color: #7f8c8d;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.thanks-extra-info {
    padding: 60px 5%;
}

.thanks-extra-info h2 {
    font-size: 30px;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

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

.info-card {
    flex: 1;
    max-width: 350px;
    background-color: var(--bg-white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.info-card h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.info-card p {
    font-size: 15px;
    color: var(--text-light);
}

.legal-page {
    padding: 60px 5%;
    max-width: 1000px;
    margin: 0 auto;
}

.legal-page h1 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.last-updated {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 24px;
    color: var(--secondary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h3 {
    font-size: 20px;
    color: var(--text-dark);
    margin-top: 20px;
    margin-bottom: 10px;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
}

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

.legal-content li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 8px;
}

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

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th,
.cookies-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-color);
}

.cookies-table th {
    font-weight: 600;
    color: var(--primary-color);
}

.cookies-table td {
    font-size: 15px;
    color: var(--text-light);
}

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

    .header-right {
        gap: 15px;
    }

    .hero-split,
    .intro-split,
    .form-section-split,
    .why-us-split,
    .page-hero-split,
    .about-content-split,
    .methodology-split,
    .service-detail-card,
    .contact-split {
        flex-direction: column;
    }

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

    .hero-content,
    .intro-content,
    .form-container,
    .why-content,
    .page-hero-content,
    .about-text,
    .methodology-content {
        padding: 40px 5%;
    }

    .hero-image,
    .intro-image,
    .form-visual,
    .why-image,
    .page-hero-image,
    .about-image,
    .methodology-image,
    .service-detail-image,
    .contact-image {
        min-height: 300px;
    }

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

    .service-card {
        width: 100%;
    }

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

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

    .values-grid,
    .location-details,
    .info-cards {
        flex-direction: column;
    }

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