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

:root {
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #f59e0b;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --success-color: #10b981;
    --error-color: #ef4444;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-white);
}

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    font-weight: 500;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #fbbf24;
}

.nav-floating {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: sticky;
    top: 37px;
    z-index: 999;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.hero-asymmetric {
    display: flex;
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 60px 5%;
    align-items: center;
}

.hero-content-offset {
    flex: 0 0 50%;
    padding-right: 50px;
    z-index: 2;
}

.hero-content-offset h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.5;
}

.hero-image-overlap {
    flex: 0 0 50%;
    position: absolute;
    right: -5%;
    top: 10%;
    width: 55%;
    height: 80%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
    transform: rotate(3deg);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.intro-offset {
    display: flex;
    padding: 100px 5%;
    gap: 80px;
    align-items: center;
    background-color: var(--bg-white);
}

.intro-text-block {
    flex: 0 0 55%;
}

.intro-text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.intro-text-block p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.intro-visual-card {
    flex: 0 0 40%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateY(30px);
    background-color: var(--bg-light);
}

.intro-visual-card img {
    width: 100%;
    height: 100%;
}

.services-preview {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.section-title-left {
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
    padding-left: 20px;
    border-left: 5px solid var(--primary-color);
}

.services-grid-asymmetric {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.service-card {
    background-color: var(--bg-white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.12);
}

.card-large {
    flex: 0 0 calc(60% - 13px);
}

.card-small-top {
    flex: 0 0 calc(40% - 13px);
}

.card-small-bottom {
    flex: 0 0 calc(40% - 13px);
}

.card-wide {
    flex: 0 0 calc(60% - 13px);
}

.card-medium {
    flex: 0 0 calc(50% - 13px);
}

.card-vertical {
    flex: 0 0 calc(50% - 13px);
}

.service-card img {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    flex-grow: 1;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.btn-select-service {
    padding: 12px 25px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select-service:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
}

.services-cta-inline {
    text-align: center;
    margin-top: 50px;
}

.services-cta-inline a {
    color: var(--primary-color);
    font-size: 18px;
    font-weight: 600;
    text-decoration: underline;
    transition: color 0.3s ease;
}

.services-cta-inline a:hover {
    color: var(--secondary-color);
}

.trust-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.trust-content-split {
    display: flex;
    gap: 70px;
    align-items: flex-start;
}

.trust-text {
    flex: 0 0 55%;
}

.trust-text h2 {
    font-size: 38px;
    margin-bottom: 30px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.trust-list li {
    padding: 15px 0 15px 35px;
    position: relative;
    font-size: 17px;
    color: var(--text-light);
}

.trust-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.trust-testimonial-card {
    flex: 0 0 40%;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.15);
}

.trust-testimonial-card blockquote {
    border: none;
}

.trust-testimonial-card p {
    font-size: 17px;
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.trust-testimonial-card cite {
    font-style: normal;
    font-weight: 600;
    color: var(--primary-color);
    font-size: 15px;
}

.form-section-offset {
    padding: 100px 5%;
    background-color: var(--bg-light);
    position: relative;
}

.form-container-asymmetric {
    max-width: 650px;
    margin-left: 10%;
    background-color: var(--bg-white);
    padding: 50px;
    border-radius: 15px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.1);
}

.form-container-asymmetric h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.form-intro {
    color: var(--text-light);
    margin-bottom: 35px;
    font-size: 16px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-size: 15px;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 2px solid var(--border-color);
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.btn-submit {
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

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

.disclaimer-section {
    padding: 60px 5%;
    background-color: #fef3c7;
}

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

.disclaimer-content p {
    color: #78350f;
    font-size: 14px;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 60px 5% 30px;
}

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

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: white;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

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

.footer-column ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(31, 41, 55, 0.98);
    backdrop-filter: blur(10px);
    padding: 25px 5%;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    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: #d1d5db;
    font-size: 15px;
    flex: 1;
}

.cookie-content p a {
    color: #60a5fa;
    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: 15px;
}

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

.btn-accept:hover {
    background-color: var(--secondary-color);
}

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

.btn-reject:hover {
    border-color: #9ca3af;
    color: white;
}

.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.about-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    filter: brightness(0.6);
}

.about-hero-text-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.about-hero-text-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 15px;
}

.about-hero-text-overlay p {
    font-size: 22px;
    font-weight: 500;
}

.about-story-offset {
    display: flex;
    padding: 100px 5%;
    gap: 70px;
    align-items: flex-start;
}

.story-block-left {
    flex: 0 0 55%;
}

.story-block-left h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.story-block-left p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.story-visual-right {
    flex: 0 0 40%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-color: var(--bg-light);
}

.story-visual-right img {
    width: 100%;
    height: 100%;
}

.approach-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.section-title-center {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

.approach-blocks {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.approach-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.approach-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.approach-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-section-asymmetric {
    padding: 100px 5%;
    background-color: var(--bg-white);
    display: flex;
    gap: 70px;
    align-items: center;
}

.team-intro {
    flex: 0 0 50%;
}

.team-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.team-intro p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.team-image-offset {
    flex: 0 0 45%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transform: translateX(20px) rotate(-2deg);
    background-color: var(--bg-light);
}

.team-image-offset img {
    width: 100%;
    height: 100%;
}

.values-section {
    padding: 100px 5%;
    background-color: var(--bg-light);
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.value-item {
    flex: 1;
    background-color: var(--bg-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-weight: 700;
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.cta-about {
    padding: 100px 5%;
    background: linear-gradient(135deg, #dbeafe 0%, #bfdbfe 100%);
}

.cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.btn-cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: white;
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.btn-cta-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(0,0,0,0.15);
}

.services-header-asymmetric {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 5%;
    text-align: left;
}

.services-header-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.services-header-subtitle {
    font-size: 20px;
    color: var(--text-light);
}

.services-detailed {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

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

.offset-left {
    padding-left: 5%;
}

.offset-right {
    padding-right: 5%;
    flex-direction: row-reverse;
}

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

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.service-detail-content p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.service-features li {
    padding: 10px 0 10px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: 700;
}

.service-price-block {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 20px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
}

.service-detail-image {
    flex: 0 0 45%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-color: var(--bg-light);
}

.service-detail-image img {
    width: 100%;
    height: 100%;
}

.services-cta-section {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.services-cta-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.services-cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.services-cta-content p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 35px;
}

.btn-cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 17px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.btn-cta-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.4);
}

.contact-hero {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    padding: 80px 5%;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.contact-intro {
    font-size: 20px;
    color: var(--text-light);
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-asymmetric {
    display: flex;
    padding: 100px 5%;
    gap: 70px;
    align-items: center;
}

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

.offset-left-contact {
    padding-left: 5%;
}

.contact-info-block h2 {
    font-size: 38px;
    margin-bottom: 40px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-item p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
}

.contact-note {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text-light);
}

.contact-image-block {
    flex: 0 0 45%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-color: var(--bg-light);
}

.contact-image-block img {
    width: 100%;
    height: 100%;
}

.contact-approach {
    padding: 80px 5%;
    background-color: var(--bg-light);
}

.approach-content-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.approach-content-centered h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--text-dark);
    font-weight: 700;
}

.approach-content-centered p {
    font-size: 17px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-faq-section {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.contact-faq-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--text-dark);
    font-weight: 700;
}

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

.faq-item {
    flex: 0 0 calc(50% - 15px);
    background-color: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.faq-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.7;
}

.thanks-hero {
    display: flex;
    padding: 100px 5%;
    gap: 70px;
    align-items: center;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 800;
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.thanks-info-box {
    background-color: white;
    padding: 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    margin-bottom: 35px;
}

.thanks-info-box h2 {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.thanks-steps {
    list-style: none;
    padding: 0;
}

.thanks-steps li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
    color: var(--text-light);
}

.thanks-steps li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
    font-size: 20px;
}

.thanks-service-reference {
    background-color: #dbeafe;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    display: none;
}

.thanks-service-reference p {
    color: var(--text-dark);
    font-size: 16px;
}

.thanks-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-link-simple {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
    transition: color 0.3s ease;
}

.btn-link-simple:hover {
    color: var(--secondary-color);
}

.thanks-visual {
    flex: 0 0 40%;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    background-color: var(--bg-light);
}

.thanks-visual img {
    width: 100%;
    height: 100%;
}

.thanks-additional-info {
    padding: 100px 5%;
    background-color: var(--bg-white);
}

.additional-info-content h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-dark);
    font-weight: 700;
}

.info-cards {
    display: flex;
    gap: 30px;
}

.info-card {
    flex: 1;
    background-color: var(--bg-light);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 700;
}

.info-card p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-card a {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-card a:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-page {
    padding: 80px 5%;
    background-color: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 800;
}

.legal-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--text-dark);
    font-weight: 700;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--text-dark);
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.legal-content ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.legal-content a:hover {
    color: var(--secondary-color);
}

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

.cookies-table thead {
    background-color: var(--bg-light);
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-weight: 700;
    color: var(--text-dark);
    border-bottom: 2px solid var(--border-color);
}

.cookies-table td {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-light);
}

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

    .hero-content-offset {
        flex: 1;
        padding-right: 0;
        text-align: center;
    }

    .hero-image-overlap {
        position: relative;
        flex: 1;
        width: 100%;
        right: 0;
        top: 0;
        transform: none;
        height: 400px;
    }

    .intro-offset,
    .trust-content-split,
    .about-story-offset,
    .team-section-asymmetric,
    .contact-info-asymmetric,
    .thanks-hero {
        flex-direction: column;
    }

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

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

    .approach-blocks,
    .values-grid,
    .info-cards,
    .faq-grid {
        flex-direction: column;
    }

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

    .offset-right {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content-offset h1 {
        font-size: 36px;
    }

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

    .cookie-content {
        flex-direction: column;
    }

    .footer-main {
        flex-direction: column;
        gap: 30px;
    }
}