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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e67e22;
    --accent-color: #27ae60;
    --dark-color: #1a1a1a;
    --light-color: #f8f9fa;
    --gray-color: #6c757d;
    --border-color: #dee2e6;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--dark-color);
    background-color: var(--white);
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--dark-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    font-size: 0.95rem;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: var(--transition);
}

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

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

.btn-reject {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-reject:hover {
    background-color: var(--white);
    color: var(--dark-color);
}

.nav-floating {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    padding: 0.8rem 2rem;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    max-width: 90%;
    width: auto;
}

.nav-brand a {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 8px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
}

.nav-menu {
    display: flex;
    gap: 1.8rem;
}

.nav-menu a {
    font-weight: 500;
    color: var(--dark-color);
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.hero-asymmetric {
    min-height: 85vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 3rem;
    position: relative;
}

.hero-offset-left {
    flex: 1;
    max-width: 600px;
    padding-right: 3rem;
    margin-left: 5%;
}

.hero-text-block h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    font-weight: 800;
}

.hero-lead {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-offset-right {
    flex: 1;
    position: relative;
    margin-top: -50px;
    margin-left: -30px;
}

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

.cta-primary,
.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.cta-primary {
    background-color: var(--secondary-color);
    color: var(--white);
}

.cta-primary:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.3);
}

.cta-secondary {
    background-color: var(--primary-color);
    color: var(--white);
}

.cta-secondary:hover {
    background-color: #1f4a5f;
    transform: translateY(-2px);
}

.intro-irregular {
    padding: 5rem 2rem;
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto;
}

.intro-narrow {
    flex: 0.8;
    margin-left: 8%;
}

.lead-text {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--dark-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.intro-narrow p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.intro-wide-image {
    flex: 1.2;
    position: relative;
    margin-top: 80px;
}

.intro-wide-image img {
    border-radius: 15px;
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.services-asymmetric {
    padding: 6rem 2rem;
    background-color: var(--light-color);
}

.section-header-offset {
    max-width: 700px;
    margin-left: 10%;
    margin-bottom: 4rem;
}

.section-header-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-header-offset p {
    font-size: 1.15rem;
    color: var(--gray-color);
}

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

.service-card {
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.card-large {
    flex: 1 1 calc(60% - 2rem);
    flex-direction: row;
}

.card-medium {
    flex: 1 1 calc(55% - 2rem);
    flex-direction: row;
}

.card-small {
    flex: 1 1 calc(40% - 2rem);
}

.service-image {
    flex: 1;
}

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

.service-content {
    flex: 1;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-content h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.service-content p {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin: 1rem 0;
}

.btn-service {
    padding: 0.8rem 1.8rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 6px;
    font-weight: 600;
    align-self: flex-start;
    transition: var(--transition);
}

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

.cta-sticky-trigger {
    padding: 5rem 2rem;
    text-align: center;
    background: linear-gradient(135deg, var(--primary-color), #1f4a5f);
    color: var(--white);
}

.cta-content-wide {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content-wide h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-content-wide p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.trust-section-offset {
    padding: 6rem 2rem;
    display: flex;
    gap: 5rem;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.trust-left {
    flex: 0.7;
    position: sticky;
    top: 150px;
}

.trust-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.trust-left p {
    font-size: 1.1rem;
    color: var(--gray-color);
}

.trust-right {
    flex: 1.3;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.trust-item h4 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 1.05rem;
    color: var(--gray-color);
    line-height: 1.7;
}

.testimonial-irregular {
    padding: 6rem 2rem;
    background-color: var(--light-color);
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    max-width: 1400px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    max-width: 400px;
}

.testimonial-offset-1 {
    align-self: flex-start;
    margin-top: 0;
}

.testimonial-offset-2 {
    align-self: flex-end;
    margin-top: 50px;
}

.testimonial-offset-3 {
    align-self: center;
    margin-top: 25px;
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--gray-color);
    font-size: 0.95rem;
}

.process-section {
    padding: 6rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.process-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.process-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    justify-content: center;
}

.process-step {
    flex: 1 1 250px;
    max-width: 300px;
    text-align: center;
}

.step-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    opacity: 0.3;
}

.process-step h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.process-step p {
    font-size: 1rem;
    color: var(--gray-color);
    line-height: 1.7;
}

.form-section-asymmetric {
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
    background-color: var(--light-color);
    max-width: 1400px;
    margin: 0 auto;
}

.form-container-offset {
    flex: 1.2;
    margin-left: 5%;
}

.form-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.form-header p {
    font-size: 1.1rem;
    color: var(--gray-color);
    margin-bottom: 2.5rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--dark-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.9rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: var(--transition);
}

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

.btn-submit {
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    align-self: flex-start;
}

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

.form-image-offset {
    flex: 0.8;
    margin-top: -80px;
}

.form-image-offset img {
    border-radius: 15px;
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.footer {
    background-color: var(--dark-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

.footer-col {
    flex: 1 1 200px;
}

.footer-col h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.footer-col p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.8);
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--secondary-color);
    padding: 1rem;
    z-index: 999;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.show {
    transform: translateY(0);
}

.sticky-cta-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.sticky-cta-content span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
}

.btn-sticky {
    padding: 0.8rem 2rem;
    background-color: var(--white);
    color: var(--secondary-color);
    border-radius: 6px;
    font-weight: 700;
    transition: var(--transition);
}

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

.page-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    background: linear-gradient(135deg, var(--light-color), var(--white));
}

.page-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.hero-subtitle {
    font-size: 1.3rem;
    color: var(--gray-color);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

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

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

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

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.service-detail-content p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-detail-content h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: var(--primary-color);
}

.service-detail-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.service-detail-content ul li {
    font-size: 1.05rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 10px;
}

.price-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark-color);
}

.price-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary-color);
}

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

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

.btn-service-cta {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

.btn-service-cta:hover {
    background-color: #1f4a5f;
    transform: translateY(-2px);
}

.services-cta {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--light-color);
}

.services-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.services-cta p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.about-intro {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.about-intro-text {
    flex: 1;
}

.about-intro-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.about-intro-text p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-intro-image {
    flex: 1;
}

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

.values-section {
    padding: 6rem 2rem;
    background-color: var(--light-color);
    max-width: 1400px;
    margin: 0 auto;
}

.values-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 4rem;
    color: var(--dark-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.value-card {
    flex: 1 1 calc(50% - 2rem);
    background-color: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
}

.value-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.value-card p {
    font-size: 1.05rem;
    color: var(--gray-color);
    line-height: 1.7;
}

.story-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: flex;
    gap: 4rem;
    align-items: center;
}

.story-left {
    flex: 1;
}

.story-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.story-left p {
    font-size: 1.1rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.story-right {
    flex: 1;
}

.story-right img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
}

.team-section {
    padding: 6rem 2rem;
    background-color: var(--light-color);
    max-width: 1400px;
    margin: 0 auto;
}

.team-section h2 {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.team-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 4rem;
}

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

.team-member {
    flex: 1 1 250px;
    max-width: 300px;
    background-color: var(--white);
    border-radius: 15px;
    overflow: hidden;
    text-align: center;
}

.team-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
}

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

.team-member h3 {
    font-size: 1.4rem;
    margin: 1.5rem 1rem 0.5rem;
    color: var(--dark-color);
}

.team-role {
    font-size: 0.95rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 0.95rem;
    color: var(--gray-color);
    line-height: 1.6;
    padding: 0 1.5rem 1.5rem;
}

.region-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

.region-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

.region-section > p {
    font-size: 1.1rem;
    color: var(--gray-color);
    text-align: center;
    margin-bottom: 3rem;
}

.region-list {
    display: flex;
    gap: 4rem;
    justify-content: center;
    flex-wrap: wrap;
}

.region-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.region-column ul li {
    font-size: 1.05rem;
    color: var(--gray-color);
    padding-left: 1.5rem;
    position: relative;
}

.region-column ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.about-cta {
    padding: 6rem 2rem;
    text-align: center;
    background-color: var(--light-color);
}

.about-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.about-cta p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

.contact-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 2rem;
    display: flex;
    gap: 5rem;
}

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

.contact-info-section h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
}

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

.contact-info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
}

.contact-info-block p {
    font-size: 1.05rem;
    color: var(--gray-color);
    line-height: 1.8;
}

.contact-info-block a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-note {
    padding: 1.5rem;
    background-color: var(--light-color);
    border-radius: 10px;
    margin-top: 3rem;
}

.contact-note p {
    font-size: 1rem;
    color: var(--gray-color);
    line-height: 1.7;
}

.contact-note a {
    color: var(--primary-color);
    font-weight: 600;
}

.contact-map-section {
    flex: 1;
}

.contact-map-section h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-color: var(--light-color);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 1rem;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.map-description {
    font-size: 1rem;
    color: var(--gray-color);
    line-height: 1.7;
}

.contact-cta {
    padding: 4rem 2rem;
    text-align: center;
    background-color: var(--light-color);
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.contact-cta p {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2rem;
}

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

.thanks-content {
    max-width: 700px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.thanks-message {
    font-size: 1.2rem;
    color: var(--gray-color);
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.thanks-info {
    background-color: var(--light-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.thanks-info p {
    font-size: 1.05rem;
    color: var(--gray-color);
}

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

.thanks-next-steps h2 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
    text-align: center;
}

.thanks-next-steps ol {
    list-style: decimal;
    margin-left: 1.5rem;
}

.thanks-next-steps ol li {
    font-size: 1.05rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1rem;
}

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

.btn-primary {
    padding: 1rem 2.5rem;
    background-color: var(--secondary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

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

.btn-secondary {
    padding: 1rem 2.5rem;
    background-color: var(--primary-color);
    color: var(--white);
    border-radius: 8px;
    font-weight: 600;
    transition: var(--transition);
}

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

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 8rem 2rem 6rem;
}

.legal-page h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.legal-date {
    font-size: 1rem;
    color: var(--gray-color);
    margin-bottom: 3rem;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: var(--dark-color);
}

.legal-page p {
    font-size: 1.05rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

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

.legal-page ul li {
    font-size: 1.05rem;
    color: var(--gray-color);
    line-height: 1.8;
    margin-bottom: 0.5rem;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding: 5rem 2rem 3rem;
    }

    .hero-offset-left {
        margin-left: 0;
        padding-right: 0;
        max-width: 100%;
    }

    .hero-text-block h1 {
        font-size: 2.5rem;
    }

    .hero-offset-right {
        margin-top: 2rem;
        margin-left: 0;
        width: 100%;
    }

    .intro-irregular {
        flex-direction: column;
        gap: 2rem;
    }

    .intro-narrow {
        margin-left: 0;
    }

    .intro-wide-image {
        margin-top: 0;
    }

    .section-header-offset {
        margin-left: 0;
    }

    .card-large,
    .card-medium,
    .card-small {
        flex: 1 1 100%;
        flex-direction: column;
    }

    .trust-section-offset {
        flex-direction: column;
        gap: 3rem;
    }

    .trust-left {
        position: static;
    }

    .form-section-asymmetric {
        flex-direction: column;
    }

    .form-container-offset {
        margin-left: 0;
    }

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

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

    .about-intro {
        flex-direction: column;
    }

    .story-section {
        flex-direction: column;
    }

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

    .contact-content {
        flex-direction: column;
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-floating {
        width: 90%;
    }

    .nav-menu {
        position: fixed;
        top: 80px;
        left: 50%;
        transform: translateX(-50%);
        background-color: var(--white);
        flex-direction: column;
        width: 90%;
        max-width: 400px;
        padding: 2rem;
        border-radius: 15px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        display: none;
        gap: 1.2rem;
    }

    .nav-menu.active {
        display: flex;
    }

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

    .hero-lead {
        font-size: 1.05rem;
    }

    .section-header-offset h2,
    .page-hero h1 {
        font-size: 2rem;
    }

    .cta-content-wide h2 {
        font-size: 1.8rem;
    }

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

    .process-steps {
        flex-direction: column;
        align-items: center;
    }

    .region-list {
        flex-direction: column;
        gap: 2rem;
    }

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

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

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}