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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

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

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

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    align-items: center;
    padding: 60px 6%;
    background-color: #f8f9fa;
    position: relative;
}

.hero-text-block {
    flex: 1;
    max-width: 520px;
    z-index: 2;
    padding-right: 40px;
}

.hero-text-block h1 {
    font-size: 56px;
    line-height: 1.1;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 32px;
}

.hero-image-offset {
    flex: 1;
    position: relative;
    margin-left: -80px;
    margin-top: -40px;
    background-color: #e9ecef;
}

.hero-image-offset img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.cta-secondary:hover {
    background-color: #2980b9;
}

.intro-offset {
    display: flex;
    padding: 100px 6% 80px;
    gap: 80px;
    align-items: flex-start;
}

.intro-narrow {
    flex: 2;
    max-width: 680px;
}

.intro-narrow h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-narrow p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.intro-stats {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 60px;
}

.stat-box {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #3498db;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.4;
}

.services-asymmetric {
    padding: 80px 6%;
    background-color: #ffffff;
}

.services-header-left {
    max-width: 600px;
    margin-bottom: 50px;
}

.services-header-left h2 {
    font-size: 42px;
    margin-bottom: 18px;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-left p {
    font-size: 17px;
    line-height: 1.6;
    color: #4a4a4a;
}

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

.service-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    background-color: #e9ecef;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 700;
}

.service-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 18px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 18px;
}

.service-featured {
    flex: 1 1 100%;
    border: 2px solid #3498db;
}

.service-premium {
    border: 2px solid #2c3e50;
}

.btn-select-service {
    width: 100%;
    padding: 14px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-section-offset {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
    background-color: #f8f9fa;
}

.form-container {
    flex: 1.2;
}

.form-container h2 {
    font-size: 36px;
    margin-bottom: 14px;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.verification-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
    flex: 1;
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.form-image-block {
    flex: 1;
    margin-top: 80px;
    margin-left: -40px;
    background-color: #e9ecef;
}

.form-image-block img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.trust-section {
    padding: 80px 6%;
    background-color: #2c3e50;
    color: #ffffff;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 22px;
    font-weight: 700;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 800px;
}

.trust-points {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-point {
    flex: 1 1 280px;
}

.trust-point h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #3498db;
}

.trust-point p {
    font-size: 15px;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 50px 6%;
    background-color: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
    max-width: 1000px;
    margin: 0 auto;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 60px 6% 30px;
}

.footer-content {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-column {
    flex: 1 1 220px;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    color: #b0b0b0;
}

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

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

.footer-column ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    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: 30px;
}

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

.cookie-actions {
    display: flex;
    gap: 12px;
}

.btn-cookie-accept {
    padding: 10px 24px;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-cookie-reject {
    padding: 10px 24px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.page-header-offset {
    padding: 80px 6% 40px;
    background-color: #f8f9fa;
    text-align: left;
}

.page-header-offset h1 {
    font-size: 52px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.page-subtitle {
    font-size: 19px;
    color: #4a4a4a;
}

.about-intro-split {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
    align-items: center;
}

.about-text-wide {
    flex: 1.5;
}

.about-text-wide h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
    font-weight: 700;
}

.about-text-wide p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.about-image-narrow img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block;
}

.values-section {
    padding: 80px 6%;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.value-card {
    flex: 1 1 calc(50% - 15px);
    background-color: #ffffff;
    padding: 32px;
    border-left: 4px solid #3498db;
}

.value-large {
    flex: 1 1 100%;
    border-left: 4px solid #2c3e50;
}

.value-accent {
    border-left: 4px solid #e74c3c;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 700;
}

.value-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.process-section-offset {
    display: flex;
    padding: 80px 6%;
    gap: 70px;
}

.process-visual {
    flex: 1;
    background-color: #e9ecef;
}

.process-visual img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.process-content {
    flex: 1.3;
}

.process-content h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

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

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

.step-number {
    font-size: 20px;
    font-weight: 700;
    color: #3498db;
    min-width: 40px;
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.team-section {
    padding: 80px 6%;
    background-color: #ffffff;
}

.team-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.team-intro {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    max-width: 800px;
    margin-bottom: 50px;
}

.team-stats {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

.team-stat {
    flex: 1 1 250px;
    text-align: center;
    padding: 30px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.stat-value {
    font-size: 48px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

.certifications-section {
    padding: 80px 6%;
    background-color: #f8f9fa;
}

.certifications-section h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a1a;
    font-weight: 700;
}

.cert-list {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.cert-item {
    flex: 1 1 300px;
    background-color: #ffffff;
    padding: 30px;
    border-top: 4px solid #3498db;
}

.cert-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.cert-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.cta-section-about {
    padding: 80px 6%;
    background-color: #2c3e50;
    color: #ffffff;
    text-align: center;
}

.cta-section-about h2 {
    font-size: 38px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

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

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

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-price {
    font-size: 28px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 18px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 24px;
    color: #2c3e50;
    font-weight: 700;
}

.service-checklist {
    list-style: none;
    margin-bottom: 20px;
}

.service-checklist li {
    padding: 8px 0 8px 28px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.service-checklist li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #3498db;
    font-weight: 700;
}

.service-turnaround {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-bottom: 20px;
}

.service-benefit {
    font-size: 16px;
    font-weight: 600;
    color: #27ae60;
    margin-bottom: 20px;
}

.btn-service-action {
    padding: 14px 32px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-service-action:hover {
    background-color: #1a252f;
}

.btn-featured {
    background-color: #3498db;
}

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

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

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

.service-featured-detail {
    background-color: #f8f9fa;
    padding: 40px;
    margin-left: -6%;
    margin-right: -6%;
}

.service-highlight {
    font-size: 17px;
    font-weight: 600;
    color: #2c3e50;
}

.pricing-note-section {
    padding: 50px 6%;
    background-color: #f8f9fa;
}

.pricing-note-section h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 700;
}

.pricing-note-section p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 14px;
    max-width: 900px;
}

.form-section-services {
    padding: 80px 6%;
    background-color: #ffffff;
}

.contact-layout {
    display: flex;
    padding: 60px 6%;
    gap: 80px;
}

.contact-info-section {
    flex: 1.3;
}

.contact-info-section h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-info-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.contact-details {
    margin-bottom: 50px;
}

.contact-detail-item {
    margin-bottom: 40px;
}

.contact-detail-item h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-value {
    font-size: 16px;
    line-height: 1.6;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.contact-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.contact-additional {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

.contact-additional h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.contact-additional p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

.contact-image-section {
    flex: 1;
    background-color: #e9ecef;
}

.contact-image-section img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}

.contact-map-section {
    padding: 80px 6%;
    background-color: #f8f9fa;
}

.contact-map-section h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.contact-map-section p {
    font-size: 16px;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.map-placeholder {
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e0e0e0;
}

.transport-links {
    list-style: none;
    margin: 20px 0;
}

.transport-links li {
    padding: 12px 0;
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
    border-bottom: 1px solid #e0e0e0;
}

.map-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 20px;
}

.faq-section {
    padding: 80px 6%;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a1a1a;
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 15px);
    background-color: #f8f9fa;
    padding: 28px;
}

.faq-item h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 700;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.thanks-container {
    display: flex;
    padding: 80px 6%;
    gap: 60px;
}

.thanks-content {
    flex: 2;
}

.thanks-icon {
    width: 70px;
    height: 70px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 36px;
    margin-bottom: 24px;
}

.thanks-content h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
    font-weight: 700;
}

.thanks-message {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.thanks-details {
    margin-bottom: 40px;
}

.thanks-details h3 {
    font-size: 26px;
    margin-bottom: 30px;
    color: #2c3e50;
    font-weight: 700;
}

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

.next-step {
    display: flex;
    gap: 20px;
    padding: 20px;
    background-color: #f8f9fa;
}

.step-num {
    font-size: 24px;
    font-weight: 700;
    color: #3498db;
    min-width: 40px;
}

.step-content h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c3e50;
    font-weight: 700;
}

.step-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a4a4a;
}

.thanks-service-info {
    margin-bottom: 40px;
    padding: 25px;
    background-color: #e8f4f8;
    border-left: 4px solid #3498db;
}

.thanks-service-info h3 {
    font-size: 22px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn-primary {
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #1a252f;
}

.btn-secondary {
    padding: 16px 36px;
    background-color: #ffffff;
    color: #2c3e50;
    text-decoration: none;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    font-weight: 600;
    transition: background-color 0.3s;
}

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

.thanks-support {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 4px;
}

.thanks-support h4 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-support p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
    margin: 0;
}

.thanks-sidebar {
    flex: 1;
}

.thanks-info-box {
    background-color: #f8f9fa;
    padding: 25px;
    margin-bottom: 25px;
    border-left: 4px solid #3498db;
}

.thanks-info-box h4 {
    font-size: 18px;
    margin-bottom: 14px;
    color: #2c3e50;
    font-weight: 700;
}

.thanks-info-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #4a4a4a;
}

.processing-times {
    list-style: none;
}

.processing-times li {
    padding: 8px 0;
    font-size: 14px;
    color: #4a4a4a;
    border-bottom: 1px solid #e0e0e0;
}

.processing-times li:last-child {
    border-bottom: none;
}

.legal-page {
    padding: 60px 6% 80px;
}

.legal-page h1 {
    font-size: 44px;
    margin-bottom: 12px;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

.legal-content {
    max-width: 900px;
}

.legal-section {
    margin-bottom: 50px;
}

.legal-section h2 {
    font-size: 30px;
    margin-bottom: 18px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-section h3 {
    font-size: 22px;
    margin-bottom: 14px;
    margin-top: 28px;
    color: #2c3e50;
    font-weight: 700;
}

.legal-section p {
    font-size: 15px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0 16px 30px;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 10px;
}

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

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

.contact-details {
    background-color: #f8f9fa;
    padding: 20px;
    border-left: 4px solid #3498db;
    margin: 20px 0;
    font-size: 15px;
    line-height: 1.8;
}

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

.cookie-table th,
.cookie-table td {
    border: 1px solid #e0e0e0;
    padding: 12px;
    text-align: left;
    font-size: 14px;
}

.cookie-table th {
    background-color: #f8f9fa;
    font-weight: 700;
    color: #2c3e50;
}

.cookie-table td {
    color: #4a4a4a;
}

@media (max-width: 768px) {
    .hero-asymmetric {
        flex-direction: column;
    }

    .hero-image-offset {
        margin-left: 0;
        margin-top: 30px;
    }

    .intro-offset,
    .about-intro-split,
    .process-section-offset,
    .contact-layout,
    .form-section-offset {
        flex-direction: column;
    }

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

    .form-row {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 20px;
        font-size: 14px;
    }

    .hero-text-block h1 {
        font-size: 38px;
    }

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