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

.navbar, .nav-main {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.nav-brand, .nav-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
    text-decoration: none;
}

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

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

.nav-links a:hover {
    color: #1a5f7a;
}

.ad-disclosure, .nav-ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.25rem 0.75rem;
    background-color: #f5f5f5;
    border-radius: 4px;
}

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

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

.hero-content h1 {
    font-size: 3rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-content p {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-image {
    flex: 1;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a5f7a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s, transform 0.2s;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

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

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: transparent;
    color: #1a5f7a;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #1a5f7a;
    transition: all 0.3s;
    cursor: pointer;
    font-size: 1rem;
}

.btn-outline:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.value-section {
    padding: 5rem 0;
}

.split-layout {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
}

.split-layout-reverse {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    gap: 4rem;
    align-items: center;
    flex-direction: row-reverse;
}

.content-left, .content-right, .content-text, .content-image {
    flex: 1;
}

.content-left, .content-text {
    padding: 2rem;
}

.content-left h2, .content-text h2 {
    font-size: 2.25rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.content-left p, .content-text p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1rem;
}

.content-right, .content-image {
    padding: 2rem;
    border-radius: 8px;
}

.content-right img, .content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-overview {
    padding: 5rem 2rem;
    background-color: #f8fafb;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.section-header-center h2 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1rem;
}

.section-header-center p {
    font-size: 1.125rem;
    color: #666;
}

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

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

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

.service-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    color: #1a5f7a;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #666;
    font-size: 1rem;
}

.service-price {
    padding: 0 1.5rem 1rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
}

.btn-select {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    padding: 0.875rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

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

.form-section {
    padding: 5rem 2rem;
}

.form-info {
    flex: 1;
    padding: 2rem;
}

.form-info h2 {
    font-size: 2.25rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.form-info p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
    font-size: 1.25rem;
}

.form-container {
    flex: 1;
    padding: 2rem;
    background-color: #f8fafb;
    border-radius: 8px;
}

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

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

.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.selected-service-display {
    padding: 1rem;
    background-color: #e8f4f8;
    border-radius: 6px;
    margin-bottom: 1.5rem;
    color: #1a5f7a;
    font-weight: 600;
}

.selected-service-display:empty {
    display: none;
}

.why-section {
    padding: 5rem 0;
    background-color: #f8fafb;
}

.footer {
    background-color: #1a5f7a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p, .footer-section a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    font-size: 0.875rem;
}

.footer-bottom .disclaimer {
    margin-top: 1rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

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

.cookie-content a {
    color: #1a5f7a;
}

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

.btn-cookie, .btn-cookie-accept {
    padding: 0.75rem 1.5rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie-outline, .btn-cookie-reject {
    padding: 0.75rem 1.5rem;
    background-color: transparent;
    color: #1a5f7a;
    border: 2px solid #1a5f7a;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-cookie-outline:hover, .btn-cookie-reject:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.page-header {
    background: linear-gradient(135deg, #1a5f7a 0%, #2a7a9a 100%);
    padding: 4rem 2rem;
    text-align: center;
    color: #ffffff;
}

.header-content h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.header-content p {
    font-size: 1.25rem;
    opacity: 0.9;
}

.about-intro {
    padding: 5rem 0;
}

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

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

.value-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.value-item p {
    color: #666;
}

.team-section {
    padding: 5rem 0;
}

.process-section {
    padding: 5rem 2rem;
    background-color: #f8fafb;
}

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

.process-step {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    text-align: center;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.process-step h3 {
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.process-step p {
    color: #666;
    font-size: 0.95rem;
}

.services-detailed {
    padding: 2rem 0;
}

.service-detail-item {
    margin-bottom: 3rem;
}

.service-detail-content {
    padding: 3rem;
}

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

.service-detail-content p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.service-features li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
    font-size: 1.25rem;
}

.service-price-large {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.service-detail-image {
    padding: 2rem;
    border-radius: 8px;
}

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

.cta-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #1a5f7a 0%, #2a7a9a 100%);
    text-align: center;
}

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

.cta-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.25rem;
    margin-bottom: 2rem;
}

.contact-section {
    padding: 3rem 0;
}

.contact-info {
    flex: 1;
    padding: 2rem;
}

.contact-info h2 {
    font-size: 2.25rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.contact-info p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8fafb;
    border-radius: 8px;
    border-left: 4px solid #1a5f7a;
}

.contact-note p {
    margin: 0;
    font-size: 0.95rem;
    color: #555;
}

.contact-map {
    flex: 1;
    padding: 2rem;
    border-radius: 8px;
}

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

.contact-benefits {
    padding: 5rem 2rem;
    background-color: #f8fafb;
}

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

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.benefit-card h3 {
    color: #1a5f7a;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.benefit-card p {
    color: #666;
}

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

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.service-confirmation {
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
    margin-bottom: 3rem;
    color: #1a5f7a;
    font-size: 1.125rem;
}

.service-confirmation:empty {
    display: none;
}

.thanks-next-steps {
    margin-bottom: 3rem;
}

.thanks-next-steps h2 {
    color: #1a5f7a;
    margin-bottom: 2rem;
}

.steps-list {
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.step {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

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

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

.legal-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.legal-container h1 {
    color: #1a5f7a;
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.legal-container h2 {
    color: #1a5f7a;
    font-size: 1.75rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-container h3 {
    color: #2a7a9a;
    font-size: 1.25rem;
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-container h4 {
    color: #333;
    font-size: 1.125rem;
    margin-top: 1rem;
    margin-bottom: 0.5rem;
}

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

.legal-container ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
    color: #555;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #1a5f7a;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #155167;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

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

.cookies-table th {
    background-color: #f8fafb;
    color: #1a5f7a;
    font-weight: 600;
}

.cookies-table tr:hover {
    background-color: #f8fafb;
}

.btn-select-service, .btn-submit, .btn-secondary {
    display: inline-block;
    padding: 0.875rem 1.75rem;
    background-color: #1a5f7a;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    text-decoration: none;
}

.btn-select-service:hover, .btn-submit:hover {
    background-color: #155167;
    transform: translateY(-2px);
}

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

.btn-secondary:hover {
    background-color: #1a5f7a;
    color: #ffffff;
}

.split-content, .service-detail {
    display: flex;
    max-width: 1400px;
    margin: 3rem auto;
    gap: 3rem;
    align-items: center;
    padding: 0 2rem;
}

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

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

.split-left h2, .service-detail-content h2 {
    font-size: 2rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.split-left img, .split-right img, .service-detail-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.feature-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.feature-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
    font-size: 1.25rem;
}

.service-detail-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5f7a;
    margin: 1.5rem 0;
}

.service-detail-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
    border-radius: 8px;
}

.stats-section {
    padding: 4rem 2rem;
    background-color: #1a5f7a;
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 2rem;
}

.stat-item {
    text-align: center;
    color: #ffffff;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.team-section, .certifications-section, .service-area-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.team-section h2, .certifications-section h2, .service-area-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 2rem;
}

.team-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.team-member {
    flex: 1;
    min-width: 250px;
    max-width: 300px;
    text-align: center;
}

.member-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    margin-bottom: 1rem;
}

.team-member h3 {
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.team-member p {
    color: #666;
}

.cert-list, .areas-list {
    list-style: none;
    padding: 0;
    max-width: 800px;
    margin: 2rem auto;
}

.cert-list li, .areas-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.cert-list li::before, .areas-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: bold;
    font-size: 1.25rem;
}

.contact-info {
    margin: 1.5rem 0;
}

.contact-item {
    margin-bottom: 1.5rem;
}

.contact-item h3 {
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-map-section {
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.map-placeholder {
    margin: 2rem auto;
    border-radius: 8px;
}

.service-areas {
    max-width: 800px;
    margin: 0 auto;
}

.hero-image-side {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    position: relative;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
}

.hero-text-side {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-side h1 {
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 1.5rem;
}

.hero-text-side p {
    font-size: 1.125rem;
    color: #555;
    margin-bottom: 2rem;
}

.services-preview {
    padding: 4rem 2rem;
    background-color: #f8fafb;
}

.services-preview h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5f7a;
    margin-bottom: 3rem;
}

.steps-list {
    padding: 0;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.step-content h3 {
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    margin: 0;
}

.form-section {
    padding: 4rem 2rem;
    background-color: #f8fafb;
}

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

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

.form-container p {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
}

.thanks-section {
    padding: 4rem 2rem;
    text-align: center;
    min-height: 60vh;
}

.thanks-container {
    max-width: 800px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

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

.thanks-message {
    font-size: 1.25rem;
    color: #555;
    margin-bottom: 2rem;
}

.thanks-details {
    padding: 1.5rem;
    background-color: #e8f4f8;
    border-radius: 8px;
    margin: 2rem 0;
    color: #1a5f7a;
}

.thanks-next-steps {
    margin: 3rem 0;
}

.thanks-next-steps h2 {
    color: #1a5f7a;
    margin-bottom: 2rem;
}

.steps-timeline {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

.timeline-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.timeline-number {
    width: 40px;
    height: 40px;
    background-color: #1a5f7a;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.timeline-content h3 {
    color: #1a5f7a;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: #666;
    margin: 0;
}

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

.disclaimer {
    max-width: 1400px;
    margin: 2rem auto 0;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
}

.disclaimer p {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.875rem;
    line-height: 1.6;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split {
        flex-direction: column;
    }

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

    .split-layout, .split-layout-reverse, .split-content, .split-content.reverse, .service-detail, .service-detail.reverse {
        flex-direction: column;
        gap: 2rem;
    }

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

    .service-card {
        min-width: 100%;
    }

    .footer-content {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .page-header h1 {
        font-size: 2rem;
    }

    .process-steps, .team-grid {
        flex-direction: column;
    }

    .stats-container {
        flex-direction: column;
    }
}