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

.ad-notice {
    background: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 20px;
    font-size: 12px;
    border-bottom: 1px solid #dee2e6;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-floating {
    position: fixed;
    top: 40px;
    right: 40px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-brand {
    font-weight: 700;
    font-size: 18px;
    color: #1a5490;
}

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

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

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

.hero-offset {
    display: flex;
    min-height: 90vh;
    padding: 120px 40px 60px 40px;
    position: relative;
}

.hero-content-left {
    flex: 0 0 55%;
    padding-right: 60px;
    padding-top: 80px;
    z-index: 2;
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #1a5490;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-lead {
    font-size: 20px;
    color: #495057;
    margin-bottom: 40px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background: #1a5490;
    color: #ffffff;
    padding: 18px 40px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(26, 84, 144, 0.2);
}

.cta-primary:hover {
    background: #144273;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 84, 144, 0.3);
}

.hero-image-right {
    flex: 0 0 45%;
    position: relative;
    margin-top: -40px;
}

.hero-image-right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    object-fit: cover;
}

.intro-asymmetric {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    align-items: flex-start;
    background: #f8f9fa;
}

.intro-block-small {
    flex: 0 0 35%;
    padding-top: 60px;
    padding-left: 40px;
}

.intro-block-small h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 25px;
    line-height: 1.2;
    font-weight: 700;
}

.intro-block-small p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
}

.intro-block-large {
    flex: 0 0 60%;
    margin-top: -80px;
}

.intro-block-large img {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.value-overlap {
    padding: 120px 40px;
    position: relative;
}

.value-card {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    position: relative;
}

.value-card h3 {
    font-size: 26px;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.value-card-1 {
    width: 45%;
    margin-left: 80px;
    margin-bottom: -50px;
    z-index: 3;
}

.value-card-2 {
    width: 50%;
    margin-left: auto;
    margin-right: 100px;
    margin-bottom: -60px;
    z-index: 2;
    background: #1a5490;
}

.value-card-2 h3 {
    color: #ffffff;
}

.value-card-2 p {
    color: #e8f1f8;
}

.value-card-3 {
    width: 48%;
    margin-left: 120px;
    z-index: 1;
}

.story-centered {
    padding: 100px 40px;
    background: #f8f9fa;
}

.story-content {
    max-width: 720px;
    margin: 0 auto;
}

.story-content h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 35px;
    text-align: center;
    font-weight: 700;
}

.story-content p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.9;
}

.story-content img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin: 40px 0;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.services-offset {
    padding: 120px 40px;
}

.services-title {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 80px;
    margin-left: 60px;
    font-weight: 800;
}

.services-grid-irregular {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-left: 40px;
}

.service-item {
    background: #ffffff;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    position: relative;
}

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

.service-item p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    color: #1a5490;
    font-weight: 700;
    margin: 20px 0;
}

.service-select {
    background: #1a5490;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.service-select:hover {
    background: #144273;
    transform: translateY(-2px);
}

.service-item-1 {
    flex: 0 0 calc(48% - 20px);
    margin-top: 0;
}

.service-item-2 {
    flex: 0 0 calc(48% - 20px);
    margin-top: 60px;
}

.service-item-3 {
    flex: 0 0 calc(48% - 20px);
    margin-top: -40px;
}

.service-item-4 {
    flex: 0 0 calc(48% - 20px);
    margin-top: 20px;
}

.service-item-5 {
    flex: 0 0 calc(48% - 20px);
    margin-top: 40px;
}

.service-item-6 {
    flex: 0 0 calc(48% - 20px);
    margin-top: -20px;
}

.form-section-offset {
    display: flex;
    padding: 100px 40px;
    gap: 80px;
    background: #f8f9fa;
    align-items: center;
}

.form-container {
    flex: 0 0 55%;
}

.form-container h2 {
    font-size: 42px;
    color: #1a5490;
    margin-bottom: 20px;
    font-weight: 700;
}

.form-intro {
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 40px;
}

.contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 25px;
}

.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: 14px 18px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background: #1a5490;
    color: #ffffff;
    border: none;
    padding: 16px 50px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-submit:hover {
    background: #144273;
    transform: translateY(-2px);
}

.form-side-image {
    flex: 0 0 40%;
    margin-top: -60px;
}

.form-side-image img {
    width: 100%;
    height: 600px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.trust-elements {
    display: flex;
    padding: 100px 40px;
    gap: 50px;
    justify-content: center;
}

.trust-block {
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
    flex: 0 0 28%;
}

.trust-block h3 {
    font-size: 24px;
    color: #1a5490;
    margin-bottom: 12px;
    font-weight: 700;
}

.trust-block p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.trust-block-1 {
    margin-top: 40px;
}

.trust-block-2 {
    margin-top: -20px;
}

.trust-block-3 {
    margin-top: 60px;
}

.footer-asymmetric {
    background: #1a1a2e;
    color: #ffffff;
    padding: 80px 40px 30px 40px;
}

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

.footer-col {
    flex: 0 0 22%;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    color: #b8c1cc;
    line-height: 1.8;
}

.footer-col a {
    display: block;
    color: #b8c1cc;
    text-decoration: none;
    margin-bottom: 10px;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.email-display {
    color: #b8c1cc;
    font-style: normal;
}

.footer-disclaimer {
    background: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    margin-bottom: 40px;
}

.footer-disclaimer p {
    font-size: 13px;
    color: #b8c1cc;
    line-height: 1.8;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 46, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px;
    box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    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 {
    color: #ffffff;
    font-size: 14px;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #64b5f6;
    text-decoration: underline;
}

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

.btn-accept,
.btn-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.btn-accept {
    background: #1a5490;
    color: #ffffff;
}

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

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

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

.page-hero-about,
.page-hero-services,
.page-hero-contact {
    padding: 180px 40px 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #1a5490 0%, #144273 100%);
}

.page-hero-about h1,
.page-hero-services h1,
.page-hero-contact h1 {
    font-size: 56px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.about-content-offset {
    display: flex;
    padding: 100px 40px;
    gap: 60px;
    align-items: center;
}

.about-text-left {
    flex: 0 0 50%;
    padding-right: 40px;
}

.about-text-left h2 {
    font-size: 40px;
    color: #1a5490;
    margin-bottom: 25px;
    font-weight: 700;
}

.about-text-left p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image-right {
    flex: 0 0 45%;
}

.about-image-right img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.mission-asymmetric {
    padding: 100px 40px;
    background: #f8f9fa;
    display: flex;
    gap: 60px;
}

.mission-card {
    background: #ffffff;
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.mission-card h3 {
    font-size: 32px;
    color: #1a5490;
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p {
    font-size: 18px;
    color: #6c757d;
    line-height: 1.8;
}

.mission-card-1 {
    flex: 0 0 45%;
    margin-top: 60px;
}

.mission-card-2 {
    flex: 0 0 50%;
    margin-top: -40px;
}

.team-section {
    padding: 100px 40px;
}

.team-section h2 {
    font-size: 48px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.team-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.team-member {
    flex: 0 0 calc(30% - 30px);
    text-align: center;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
}

.team-member img {
    width: 100%;
    height: 280px;
    border-radius: 12px;
    margin-bottom: 20px;
    object-fit: cover;
}

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

.team-member p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
}

.values-overlap {
    padding: 100px 40px;
    background: #f8f9fa;
}

.values-overlap h2 {
    font-size: 48px;
    color: #1a5490;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 700;
}

.values-container {
    position: relative;
}

.value-item {
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.value-item h3 {
    font-size: 26px;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 700;
}

.value-item p {
    font-size: 17px;
    color: #6c757d;
    line-height: 1.8;
}

.value-item-1 {
    width: 50%;
    margin-left: 60px;
}

.value-item-2 {
    width: 55%;
    margin-left: auto;
    margin-right: 80px;
}

.value-item-3 {
    width: 48%;
    margin-left: 100px;
}

.cta-about,
.cta-services,
.cta-contact,
.cta-thanks {
    padding: 80px 40px;
    text-align: center;
    background: linear-gradient(135deg, #1a5490 0%, #144273 100%);
}

.cta-about h2,
.cta-services h2,
.cta-contact h2,
.cta-thanks h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about p,
.cta-services p,
.cta-contact p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

.cta-button {
    display: inline-block;
    background: #ffffff;
    color: #1a5490;
    padding: 18px 50px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.services-detailed {
    padding: 60px 40px;
}

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

.service-detail-content {
    flex: 0 0 50%;
}

.service-detail-content h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 25px;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-price-block {
    background: #f8f9fa;
    padding: 20px 30px;
    border-radius: 10px;
    margin: 30px 0;
    display: flex;
    align-items: center;
    gap: 15px;
}

.price-label {
    font-size: 16px;
    color: #6c757d;
    font-weight: 600;
}

.price-amount {
    font-size: 32px;
    color: #1a5490;
    font-weight: 700;
}

.service-cta {
    display: inline-block;
    background: #1a5490;
    color: #ffffff;
    padding: 14px 35px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.service-cta:hover {
    background: #144273;
    transform: translateY(-2px);
}

.service-detail-image {
    flex: 0 0 45%;
}

.service-detail-image img {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    object-fit: cover;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.service-detail-1,
.service-detail-3,
.service-detail-5 {
    flex-direction: row;
}

.service-detail-2,
.service-detail-4,
.service-detail-6 {
    flex-direction: row-reverse;
}

.process-overview {
    padding: 100px 40px;
    background: #f8f9fa;
}

.process-overview h2 {
    font-size: 42px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.process-steps {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.process-step {
    flex: 0 0 calc(22% - 30px);
    background: #ffffff;
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.06);
}

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

.process-step h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.7;
}

.contact-layout {
    display: flex;
    padding: 80px 40px;
    gap: 70px;
}

.contact-info-block {
    flex: 0 0 45%;
}

.contact-info-block h2 {
    font-size: 40px;
    color: #1a5490;
    margin-bottom: 40px;
    font-weight: 700;
}

.contact-detail {
    margin-bottom: 35px;
}

.contact-detail h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 12px;
    font-weight: 700;
}

.contact-detail p {
    font-size: 17px;
    color: #495057;
    line-height: 1.8;
}

.info-note {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
    margin-top: 10px;
}

.contact-image-block {
    flex: 0 0 50%;
    margin-top: -40px;
}

.contact-image-block img {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.location-info {
    padding: 80px 40px;
    background: #f8f9fa;
}

.location-info h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

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

.location-item {
    flex: 0 0 40%;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.location-item h3 {
    font-size: 24px;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 700;
}

.location-item p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.8;
}

.faq-contact {
    padding: 80px 40px;
}

.faq-contact h2 {
    font-size: 42px;
    color: #2c3e50;
    margin-bottom: 50px;
    text-align: center;
    font-weight: 700;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 12px;
    margin-bottom: 25px;
}

.faq-item h3 {
    font-size: 20px;
    color: #1a5490;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
}

.thanks-hero {
    display: flex;
    padding: 160px 40px 80px 40px;
    gap: 60px;
    align-items: center;
}

.thanks-content {
    flex: 0 0 55%;
}

.thanks-content h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 25px;
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    color: #495057;
    margin-bottom: 30px;
    line-height: 1.7;
}

.thanks-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin-top: 30px;
}

.thanks-details p {
    font-size: 18px;
    color: #1a5490;
    font-weight: 600;
}

.thanks-image {
    flex: 0 0 40%;
}

.thanks-image img {
    width: 100%;
    height: 400px;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.next-steps {
    padding: 80px 40px;
    background: #f8f9fa;
}

.next-steps h2 {
    font-size: 42px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.steps-container {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.step-box {
    flex: 0 0 30%;
    background: #ffffff;
    padding: 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.step-icon {
    width: 70px;
    height: 70px;
    background: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    margin: 0 auto 25px auto;
}

.step-box h3 {
    font-size: 22px;
    color: #2c3e50;
    margin-bottom: 15px;
    font-weight: 700;
}

.step-box p {
    font-size: 16px;
    color: #6c757d;
    line-height: 1.7;
}

.thanks-info {
    padding: 80px 40px;
}

.thanks-info h2 {
    font-size: 42px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 50px;
    font-weight: 700;
}

.info-blocks {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.info-block {
    flex: 0 0 30%;
    background: #f8f9fa;
    padding: 35px;
    border-radius: 12px;
}

.info-block h3 {
    font-size: 22px;
    color: #1a5490;
    margin-bottom: 15px;
    font-weight: 700;
}

.info-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.7;
}

.info-block a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-page {
    padding: 160px 40px 80px 40px;
}

.legal-page h1 {
    font-size: 48px;
    color: #1a5490;
    margin-bottom: 50px;
    font-weight: 800;
}

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

.legal-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-top: 50px;
    margin-bottom: 20px;
    font-weight: 700;
}

.legal-content h3 {
    font-size: 24px;
    color: #1a5490;
    margin-top: 35px;
    margin-bottom: 15px;
    font-weight: 700;
}

.legal-content h4 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-content p {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 20px;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    font-size: 16px;
    color: #495057;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-content a {
    color: #1a5490;
    text-decoration: underline;
}

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

.cookie-table thead {
    background: #f8f9fa;
}

.cookie-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: #2c3e50;
    border-bottom: 2px solid #dee2e6;
}

.cookie-table td {
    padding: 15px;
    border-bottom: 1px solid #e9ecef;
    color: #495057;
}

@media (max-width: 1024px) {
    .nav-floating {
        top: 20px;
        right: 20px;
        padding: 15px 20px;
        gap: 20px;
    }

    .nav-links {
        gap: 15px;
    }

    .nav-links a {
        font-size: 13px;
    }

    .hero-offset {
        flex-direction: column;
        padding: 100px 30px 40px 30px;
    }

    .hero-content-left {
        flex: 1;
        padding-right: 0;
        padding-top: 40px;
    }

    .hero-content-left h1 {
        font-size: 42px;
    }

    .hero-image-right {
        flex: 1;
        margin-top: 40px;
    }

    .intro-asymmetric {
        flex-direction: column;
        padding: 60px 30px;
    }

    .intro-block-small {
        flex: 1;
        padding-left: 0;
        padding-top: 0;
    }

    .intro-block-large {
        flex: 1;
        margin-top: 40px;
    }

    .value-card-1,
    .value-card-2,
    .value-card-3 {
        width: 90%;
        margin-left: 30px;
        margin-right: 30px;
    }

    .services-grid-irregular {
        flex-direction: column;
        padding-left: 0;
    }

    .service-item-1,
    .service-item-2,
    .service-item-3,
    .service-item-4,
    .service-item-5,
    .service-item-6 {
        flex: 1;
        margin-top: 0;
    }

    .form-section-offset {
        flex-direction: column;
        gap: 40px;
    }

    .form-container,
    .form-side-image {
        flex: 1;
    }

    .form-side-image {
        margin-top: 0;
    }

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

    .trust-block {
        flex: 1;
    }

    .trust-block-1,
    .trust-block-2,
    .trust-block-3 {
        margin-top: 0;
    }

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

    .footer-col {
        flex: 1;
    }

    .about-content-offset,
    .mission-asymmetric,
    .contact-layout {
        flex-direction: column;
    }

    .about-text-left,
    .about-image-right,
    .mission-card,
    .contact-info-block,
    .contact-image-block {
        flex: 1;
    }

    .mission-card-1,
    .mission-card-2 {
        margin-top: 0;
    }

    .contact-image-block {
        margin-top: 40px;
    }

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

    .team-member {
        flex: 1;
    }

    .value-item-1,
    .value-item-2,
    .value-item-3 {
        width: 90%;
        margin-left: 30px;
        margin-right: 30px;
    }

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

    .service-detail-1,
    .service-detail-2,
    .service-detail-3,
    .service-detail-4,
    .service-detail-5,
    .service-detail-6 {
        flex-direction: column;
    }

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

    .process-steps,
    .location-details,
    .steps-container,
    .info-blocks {
        flex-direction: column;
    }

    .process-step,
    .location-item,
    .step-box,
    .info-block {
        flex: 1;
    }

    .thanks-hero {
        flex-direction: column;
        padding: 120px 30px 60px 30px;
    }

    .thanks-content,
    .thanks-image {
        flex: 1;
    }

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

@media (max-width: 768px) {
    .nav-floating {
        left: 20px;
        right: 20px;
        flex-direction: column;
        gap: 15px;
    }

    .hero-content-left h1 {
        font-size: 36px;
    }

    .services-title,
    .page-hero-about h1,
    .page-hero-services h1,
    .page-hero-contact h1 {
        font-size: 38px;
    }
}