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

.main-header {
    background: #1a1a2e;
    color: #ffffff;
    padding: 1.2rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #f39c12;
    letter-spacing: -0.5px;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #95a5a6;
    padding: 0.3rem 0.8rem;
    border: 1px solid #34495e;
    border-radius: 4px;
    background: rgba(52, 73, 94, 0.3);
}

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

.main-nav a {
    color: #ecf0f1;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #f39c12;
}

.hero-section {
    background: #16213e;
    position: relative;
    overflow: hidden;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 650px;
    background-color: #0f3460;
}

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

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

.hero-overlay h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    text-shadow: 2px 2px 10px rgba(0,0,0,0.5);
}

.hero-overlay p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    color: #ecf0f1;
}

.cta-primary {
    display: inline-block;
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

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

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

.intro-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.intro-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
}

.problem-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

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

.container-split.reverse {
    flex-direction: row-reverse;
}

.split-content {
    flex: 1;
    min-width: 300px;
}

.split-content h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.split-content p {
    font-size: 1.05rem;
    margin-bottom: 1.3rem;
    color: #34495e;
    line-height: 1.8;
}

.challenge-list {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.challenge-list li {
    padding-left: 1.8rem;
    margin-bottom: 1rem;
    position: relative;
    font-size: 1.05rem;
    color: #34495e;
}

.challenge-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

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

.solution-section {
    background: #2c3e50;
    padding: 6rem 2rem;
    color: #ffffff;
}

.container-full {
    max-width: 1400px;
    margin: 0 auto;
}

.solution-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-align: center;
    font-weight: 700;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #ecf0f1;
}

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

.solution-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.solution-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

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

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

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

.trust-section h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.testimonial {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 2rem;
    border-left: 4px solid #3498db;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #34495e;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-weight: 600;
}

.services-overview {
    background: #ffffff;
    padding: 6rem 2rem;
}

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

.services-overview h2 {
    font-size: 2.6rem;
    margin-bottom: 1rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.service-selection-form {
    margin-top: 3rem;
}

.services-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    margin-bottom: 4rem;
    justify-content: center;
}

.service-card {
    background: #ffffff;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    transition: all 0.3s;
}

.service-card:hover {
    border-color: #3498db;
    box-shadow: 0 8px 25px rgba(52, 152, 219, 0.15);
}

.service-card.featured {
    border-color: #f39c12;
    box-shadow: 0 8px 25px rgba(243, 156, 18, 0.2);
}

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

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

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.service-content p {
    font-size: 1rem;
    color: #34495e;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 1rem;
}

.savings {
    font-size: 0.9rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    padding: 0.8rem;
    border-radius: 6px;
    transition: background 0.3s;
}

.radio-label:hover {
    background: #ecf0f1;
}

.radio-label input[type="radio"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-section {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 10px;
    margin-top: 3rem;
}

.form-section h3 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.form-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.form-group {
    flex: 1;
    min-width: 250px;
}

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

.form-group input {
    width: 100%;
    padding: 0.9rem;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

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

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    padding: 1.1rem 3rem;
    font-size: 1.1rem;
    font-weight: 700;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(39, 174, 96, 0.3);
}

.why-us-section {
    background: #16a085;
    padding: 5rem 2rem;
    color: #ffffff;
}

.why-us-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.why-us-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #ecf0f1;
}

.final-cta-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 5rem 2rem;
}

.cta-box {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-box h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

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

.cta-secondary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 1rem 3rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

.disclaimer-section {
    background: #ecf0f1;
    padding: 3rem 2rem;
}

.disclaimer-text {
    font-size: 0.9rem;
    color: #7f8c8d;
    line-height: 1.6;
    text-align: center;
}

.main-footer {
    background: #1a1a2e;
    color: #ffffff;
    padding: 4rem 2rem 2rem;
}

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    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-buttons {
    display: flex;
    gap: 1rem;
}

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

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

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

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

.page-hero {
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    padding: 5rem 2rem 4rem;
    color: #ffffff;
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 800;
}

.lead-text {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #ecf0f1;
}

.story-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.mission-section {
    background: #f8f9fa;
    padding: 6rem 2rem;
}

.mission-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

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

.mission-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    flex: 1;
    min-width: 280px;
    max-width: 350px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.mission-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #3498db;
    font-weight: 700;
}

.mission-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #34495e;
}

.approach-section {
    background: #ffffff;
    padding: 6rem 2rem;
}

.approach-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.approach-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.7;
}

.approach-list {
    list-style: none;
    margin-top: 2rem;
}

.approach-list li {
    padding-left: 2rem;
    margin-bottom: 1.2rem;
    position: relative;
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
}

.approach-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 1.3rem;
}

.values-section {
    background: #2c3e50;
    padding: 6rem 2rem;
    color: #ffffff;
}

.values-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
    font-weight: 700;
}

.values-blocks {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.value-block {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 5px solid #f39c12;
}

.value-block h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #f39c12;
}

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

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

.team-section h2 {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.team-section p {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: #34495e;
    line-height: 1.7;
}

.cta-about-section {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    padding: 5rem 2rem;
}

.services-detail-section {
    padding: 4rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

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

.service-detail-card.featured-service {
    background: #fffbea;
    padding: 2rem;
    border-radius: 12px;
    border: 3px solid #f39c12;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

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

.price-large {
    font-size: 2.5rem;
    font-weight: 800;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.savings-large {
    font-size: 1rem;
    color: #e74c3c;
    font-weight: 600;
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: #ffe6e6;
    border-radius: 6px;
    display: inline-block;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 1rem;
    color: #34495e;
    font-weight: 700;
}

.service-detail-content ul {
    margin-left: 1.5rem;
    margin-bottom: 1.5rem;
}

.service-detail-content ul li {
    margin-bottom: 0.7rem;
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

.services-cta-section {
    background: linear-gradient(135deg, #8e44ad 0%, #3498db 100%);
    padding: 5rem 2rem;
}

.contact-info-section {
    padding: 6rem 2rem;
    background: #ffffff;
}

.contact-details {
    flex: 1;
    min-width: 300px;
}

.contact-details h2 {
    font-size: 2.3rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.contact-block h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #3498db;
    font-weight: 700;
}

.contact-block p {
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
}

.email-text {
    color: #7f8c8d;
    font-weight: 600;
}

.note {
    font-size: 0.95rem;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    background-color: #bdc3c7;
}

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

.faq-section {
    background: #f8f9fa;
    padding: 5rem 2rem;
}

.faq-section h2 {
    font-size: 2.4rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item {
    background: #ffffff;
    padding: 2rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item p {
    font-size: 1rem;
    color: #34495e;
    line-height: 1.7;
}

.thanks-section {
    padding: 6rem 2rem;
    background: #f8f9fa;
}

.thanks-content {
    text-align: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #27ae60;
    font-weight: 800;
}

.thanks-details {
    background: #ffffff;
    padding: 2.5rem;
    margin: 3rem 0;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thanks-details h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.next-steps {
    margin-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: #34495e;
    line-height: 1.7;
}

.thanks-service-info {
    background: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.selected-service {
    font-size: 1.2rem;
    color: #27ae60;
    font-weight: 700;
}

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

.btn-primary {
    background: #3498db;
    color: #ffffff;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.btn-secondary {
    background: transparent;
    color: #3498db;
    padding: 1rem 2.5rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border: 2px solid #3498db;
    border-radius: 8px;
    transition: all 0.3s;
}

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

.thanks-additional {
    background: #ffffff;
    padding: 4rem 2rem;
}

.thanks-additional h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-additional p {
    font-size: 1.05rem;
    color: #34495e;
    margin-bottom: 2rem;
    line-height: 1.7;
}

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

.thanks-links a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.3s;
}

.thanks-links a:hover {
    color: #2980b9;
    text-decoration: underline;
}

.legal-page {
    background: #ffffff;
    padding: 5rem 2rem;
}

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

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.legal-page h4 {
    font-size: 1.2rem;
    margin-top: 1.5rem;
    margin-bottom: 0.7rem;
    color: #34495e;
    font-weight: 600;
}

.legal-page p {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: #34495e;
    line-height: 1.7;
}

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

.legal-page ul li {
    margin-bottom: 0.8rem;
    font-size: 1rem;
    color: #34495e;
    line-height: 1.6;
}

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

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

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

    .hero-overlay p {
        font-size: 1.1rem;
    }

    .main-nav {
        flex-direction: column;
        gap: 0.8rem;
        width: 100%;
        text-align: center;
    }

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

    .container-split.reverse {
        flex-direction: column;
    }

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

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

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

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

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