/* Reset and Base Styles */
* {
    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-color: #ffffff;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: opacity 0.3s ease;
}

a:hover {
    opacity: 0.7;
}

/* Ad Disclosure */
.ad-disclosure {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #e9ecef;
}

/* Floating Navigation */
.nav-floating {
    position: fixed;
    top: 40px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 0 30px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 20px 40px;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(10px);
}

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
    color: #5a6c7d;
    position: relative;
}

.nav-links a.active {
    color: #2c3e50;
}

.nav-links a:hover {
    color: #2c3e50;
    opacity: 1;
}

/* Hero Section - Asymmetric Layout */
.hero-asymmetric {
    display: flex;
    min-height: 100vh;
    padding-top: 140px;
    position: relative;
}

.hero-content-offset {
    flex: 0 0 45%;
    padding: 80px 60px 80px 80px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.hero-text-block {
    max-width: 550px;
}

.hero-text-block h1 {
    font-size: 58px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #1a2332;
    letter-spacing: -1.5px;
}

.hero-subtitle {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

.hero-image-overlap {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
    margin-left: -80px;
    border-radius: 30px 0 0 30px;
}

/* CTA Buttons */
.cta-primary {
    display: inline-block;
    padding: 18px 45px;
    background-color: #2c3e50;
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #1a2532;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
    opacity: 1;
}

.cta-secondary {
    display: inline-block;
    padding: 18px 45px;
    background-color: transparent;
    color: #2c3e50;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid #2c3e50;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
    opacity: 1;
}

.cta-inline {
    display: inline-block;
    color: #2c3e50;
    font-weight: 600;
    border-bottom: 2px solid #2c3e50;
    padding-bottom: 4px;
    transition: all 0.3s ease;
}

.cta-inline:hover {
    border-bottom-color: transparent;
    opacity: 1;
}

/* Intro Section - Asymmetric */
.intro-asymmetric {
    padding: 120px 80px;
    background-color: #f8f9fa;
}

.intro-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.intro-text-wide {
    flex: 0 0 60%;
}

.intro-text-wide h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a2332;
}

.intro-text-wide p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a5568;
}

.intro-card-float {
    flex: 1;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    margin-top: 60px;
}

.intro-card-float img {
    border-radius: 12px;
    margin-bottom: 15px;
}

.card-caption {
    font-size: 15px;
    color: #6c757d;
    font-style: italic;
}

/* Services Grid - Asymmetric */
.services-preview {
    padding: 140px 80px;
    background-color: #ffffff;
}

.services-grid-asymmetric {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.service-card {
    flex: 0 0 calc(50% - 20px);
    background-color: #f8f9fa;
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card.offset-top {
    margin-top: 0;
}

.service-card.offset-bottom {
    margin-top: 60px;
}

.service-image {
    height: 280px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.service-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #1a2332;
    font-weight: 700;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
    flex: 1;
}

.price-tag {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.select-service {
    padding: 14px 30px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

/* Insight Section */
.insight-section {
    padding: 140px 80px;
    background-color: #f8f9fa;
}

.insight-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 100px;
    align-items: center;
}

.insight-image-block {
    flex: 0 0 45%;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.insight-image-block img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.insight-text-block {
    flex: 1;
}

.insight-text-block h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a2332;
}

.insight-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 25px;
}

/* CTA Overlap Section */
.cta-overlap-section {
    padding: 100px 80px;
    background-color: #2c3e50;
    position: relative;
}

.cta-overlap-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-overlap-content h2 {
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 700;
}

.cta-overlap-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-overlap-content .cta-secondary {
    border-color: #ffffff;
    color: #ffffff;
}

.cta-overlap-content .cta-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

/* Form Section - Asymmetric */
.form-section {
    padding: 140px 80px;
    background-color: #ffffff;
}

.form-container-asymmetric {
    max-width: 900px;
    margin: 0 auto;
}

.form-intro {
    margin-bottom: 50px;
}

.form-intro h2 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a2332;
}

.form-intro p {
    font-size: 17px;
    color: #4a5568;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 16px 20px;
    border: 2px solid #e9ecef;
    border-radius: 12px;
    font-size: 16px;
    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: #2c3e50;
}

.btn-submit {
    padding: 18px 45px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-submit:hover {
    background-color: #1a2532;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(44, 62, 80, 0.3);
}

/* Disclaimer Section */
.disclaimer-section {
    padding: 80px 80px;
    background-color: #f8f9fa;
}

.disclaimer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px;
    background-color: #fff3cd;
    border-left: 5px solid #ffc107;
    border-radius: 12px;
}

.disclaimer-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #664d03;
}

/* Footer - Asymmetric */
.footer-asymmetric {
    background-color: #1a2332;
    color: #ffffff;
    padding: 80px 80px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 50px;
}

.footer-block h3 {
    font-size: 22px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-block h4 {
    font-size: 16px;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-block p {
    font-size: 15px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

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

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

.footer-block ul li a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
}

.footer-block ul li a:hover {
    color: #ffffff;
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 35, 50, 0.98);
    color: #ffffff;
    padding: 25px 30px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

.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;
    font-size: 15px;
    line-height: 1.6;
}

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

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

.btn-cookie-accept {
    background-color: #ffffff;
    color: #2c3e50;
}

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

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

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

/* About Page */
.about-page {
    padding-top: 140px;
}

.about-hero {
    padding: 80px 80px 120px;
    background-color: #f8f9fa;
    display: flex;
    gap: 80px;
    align-items: center;
}

.about-hero-content {
    flex: 0 0 45%;
}

.about-hero-content h1 {
    font-size: 52px;
    line-height: 1.1;
    margin-bottom: 25px;
    font-weight: 800;
    color: #1a2332;
}

.about-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
}

.about-hero-image {
    flex: 1;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.about-story {
    padding: 120px 80px;
}

.story-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.story-text-block {
    flex: 1;
}

.story-text-block h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a2332;
}

.story-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.story-image-offset {
    flex: 0 0 40%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
    margin-top: -60px;
}

.story-image-offset img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.approach-section {
    padding: 120px 80px;
    background-color: #f8f9fa;
}

.approach-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.approach-wrapper h2 {
    font-size: 42px;
    margin-bottom: 60px;
    font-weight: 700;
    color: #1a2332;
    text-align: center;
}

.approach-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.approach-item {
    flex: 0 0 calc(50% - 20px);
    padding: 40px;
    background-color: #ffffff;
    border-radius: 20px;
}

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

.approach-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.values-section {
    padding: 120px 80px;
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.values-image {
    flex: 0 0 45%;
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.values-image img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.values-text {
    flex: 1;
}

.values-text h2 {
    font-size: 40px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a2332;
}

.values-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.team-section {
    padding: 120px 80px;
    background-color: #f8f9fa;
}

.team-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

.team-wrapper h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a2332;
    text-align: center;
}

.team-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    text-align: center;
    margin-bottom: 50px;
}

.team-image-full {
    height: 500px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.team-image-full img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.cta-about {
    padding: 100px 80px;
    background-color: #2c3e50;
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.cta-about-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-about-content .cta-primary {
    background-color: #ffffff;
    color: #2c3e50;
}

.cta-about-content .cta-primary:hover {
    background-color: #f8f9fa;
}

/* Services Page */
.services-page {
    padding-top: 140px;
}

.services-header {
    padding: 80px 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-header-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #1a2332;
}

.services-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    max-width: 900px;
    margin: 0 auto;
}

.services-detailed {
    padding: 80px 80px;
}

.service-detail-item {
    max-width: 1400px;
    margin: 0 auto 100px;
    display: flex;
    gap: 80px;
    align-items: center;
}

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

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

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

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

.service-details-list {
    list-style: none;
    margin-bottom: 30px;
}

.service-details-list li {
    padding: 12px 0 12px 30px;
    font-size: 16px;
    color: #4a5568;
    position: relative;
}

.service-details-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c3e50;
    font-size: 20px;
    font-weight: bold;
}

.service-pricing {
    margin-bottom: 30px;
}

.price-large {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 10px;
}

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

.service-detail-image {
    flex: 0 0 45%;
    height: 450px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.services-cta {
    padding: 100px 80px;
    background-color: #f8f9fa;
}

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

.services-cta-content h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a2332;
}

.services-cta-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

/* Contact Page */
.contact-page {
    padding-top: 140px;
}

.contact-hero {
    padding: 80px 80px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 52px;
    margin-bottom: 20px;
    font-weight: 800;
    color: #1a2332;
}

.contact-lead {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
}

.contact-info-section {
    padding: 100px 80px;
}

.contact-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-block {
    flex: 1;
    padding: 50px 40px;
    background-color: #f8f9fa;
    border-radius: 20px;
    text-align: center;
}

.contact-icon-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
    color: #2c3e50;
}

.contact-block h2 {
    font-size: 24px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a2332;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    font-size: 14px;
    color: #6c757d;
    margin-top: 10px;
}

.contact-additional {
    padding: 100px 80px;
    background-color: #f8f9fa;
}

.contact-additional-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.contact-text-block {
    flex: 1;
}

.contact-text-block h2 {
    font-size: 38px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a2332;
}

.contact-text-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.contact-image-block {
    flex: 0 0 45%;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 30px;
}

.contact-image-block img {
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.contact-map-section {
    padding: 100px 80px;
}

.contact-map-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.contact-map-wrapper h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #1a2332;
    text-align: center;
}

.map-description {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    text-align: center;
    margin-bottom: 50px;
}

.map-placeholder {
    height: 450px;
    background-color: #e9ecef;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-overlay {
    text-align: center;
}

.map-overlay p {
    font-size: 18px;
    font-weight: 600;
    color: #2c3e50;
}

.contact-cta {
    padding: 100px 80px;
    background-color: #2c3e50;
}

.contact-cta-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.contact-cta-content h2 {
    font-size: 44px;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.9;
}

/* Thanks Page */
.thanks-page {
    padding-top: 140px;
    min-height: 100vh;
}

.thanks-content {
    padding: 100px 80px;
}

.thanks-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 30px;
    color: #28a745;
}

.thanks-wrapper h1 {
    font-size: 48px;
    margin-bottom: 25px;
    font-weight: 700;
    color: #1a2332;
}

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 30px;
}

.service-confirmation {
    padding: 25px;
    background-color: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 50px;
}

.service-confirmation p {
    font-size: 16px;
    color: #4a5568;
}

.service-confirmation strong {
    color: #2c3e50;
}

.thanks-next-steps {
    margin-bottom: 50px;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    font-weight: 700;
    color: #1a2332;
    text-align: center;
}

.steps-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 30px;
}

.step-item {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-radius: 16px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
}

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

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

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* Legal Pages */
.legal-page {
    padding-top: 140px;
    min-height: 100vh;
}

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

.legal-content h1 {
    font-size: 44px;
    margin-bottom: 30px;
    font-weight: 700;
    color: #1a2332;
}

.legal-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2c3e50;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 10px;
}

.legal-content a {
    color: #2c3e50;
    text-decoration: underline;
}

.legal-date {
    margin-top: 50px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        padding-top: 120px;
    }

    .hero-content-offset {
        flex: 1;
        padding: 60px 40px;
    }

    .hero-image-overlap {
        margin-left: 0;
        min-height: 400px;
        border-radius: 30px;
    }

    .intro-wrapper,
    .insight-container,
    .story-container,
    .values-container,
    .contact-additional-wrapper,
    .service-detail-item {
        flex-direction: column;
    }

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

    .service-card {
        flex: 1;
        margin-top: 0 !important;
    }

    .contact-grid,
    .steps-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-floating {
        padding: 0 20px;
    }

    .nav-container {
        flex-direction: column;
        gap: 20px;
        padding: 20px 25px;
    }

    .nav-links {
        gap: 20px;
    }

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

    .intro-asymmetric,
    .services-preview,
    .insight-section,
    .form-section,
    .about-story,
    .approach-section,
    .values-section,
    .team-section,
    .services-detailed,
    .contact-info-section,
    .contact-additional,
    .contact-map-section {
        padding: 80px 30px;
    }

    .intro-text-wide h2,
    .insight-text-block h2,
    .form-intro h2 {
        font-size: 32px;
    }

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

    .approach-item {
        flex: 1;
    }

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