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

:root {
    --primary-color: #2c5f7d;
    --secondary-color: #e8763b;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --accent-1: #7fa99b;
    --accent-2: #d4a373;
}

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

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

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

ul {
    list-style: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    color: white;
    padding: 24px;
    z-index: 9999;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 250px;
    margin: 0;
}

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

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

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

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

.btn-reject {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}

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

.nav-asymmetric {
    position: sticky;
    top: 0;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
    padding: 20px 0;
}

.nav-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.nav-items {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-items a {
    color: var(--text-dark);
    font-weight: 500;
    position: relative;
}

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

.nav-items a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-items a:hover::after {
    width: 100%;
}

.ad-label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    padding: 4px 12px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    background-color: var(--bg-light);
}

.hero-offset {
    max-width: 1400px;
    margin: 80px auto 120px;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-content-left {
    flex: 1;
    padding-right: 40px;
    transform: translateY(-40px);
}

.hero-content-left h1 {
    font-size: 56px;
    line-height: 1.15;
    margin-bottom: 28px;
    color: var(--text-dark);
    font-weight: 800;
}

.hero-content-left p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 36px;
    line-height: 1.6;
}

.hero-image-right {
    flex: 1;
    position: relative;
    transform: translateY(30px);
    background-color: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-primary:hover {
    background-color: #c96630;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(232, 118, 59, 0.3);
}

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

.intro-text-block {
    flex: 1.2;
    padding-top: 60px;
}

.intro-text-block h2 {
    font-size: 42px;
    margin-bottom: 24px;
    line-height: 1.2;
    font-weight: 700;
}

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

.intro-image-overlap {
    flex: 1;
    position: relative;
    transform: translateY(-80px) translateX(20px);
    background-color: var(--accent-1);
    border-radius: 8px;
    overflow: hidden;
}

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

.services-preview {
    background-color: var(--bg-light);
    padding: 120px 40px;
}

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

.service-card {
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.service-card.card-1 {
    transform: translateY(-30px);
}

.service-card.card-2 {
    transform: translateY(20px);
}

.service-card.card-3 {
    transform: translateY(-10px);
}

.service-card img {
    width: 100%;
    height: 240px;
    background-color: var(--accent-2);
}

.service-card h3 {
    font-size: 24px;
    padding: 24px 24px 12px;
    font-weight: 700;
}

.service-card p {
    padding: 0 24px 20px;
    color: var(--text-light);
    font-size: 16px;
}

.link-arrow {
    display: inline-block;
    padding: 0 24px 24px;
    color: var(--primary-color);
    font-weight: 600;
    cursor: pointer;
}

.link-arrow:hover {
    color: var(--secondary-color);
    text-decoration: underline;
}

.approach-section {
    max-width: 1400px;
    margin: 120px auto;
    padding: 0 40px;
}

.approach-wrapper {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.approach-left {
    flex: 1;
    padding-right: 20px;
}

.approach-left h2 {
    font-size: 48px;
    margin-bottom: 48px;
    font-weight: 700;
}

.approach-step {
    margin-bottom: 36px;
    padding-left: 32px;
    border-left: 3px solid var(--accent-1);
}

.approach-step h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-step p {
    color: var(--text-light);
    font-size: 16px;
}

.approach-right {
    flex: 1;
    position: relative;
    transform: translateY(60px);
    background-color: var(--accent-2);
    border-radius: 8px;
    overflow: hidden;
}

.approach-right img {
    width: 100%;
}

.testimonials-offset {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.testimonials-offset h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

.testimonials-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.testimonial-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: var(--bg-light);
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color);
}

.testimonial-item.item-1 {
    transform: translateY(-20px);
}

.testimonial-item.item-2 {
    transform: translateY(30px);
}

.testimonial-item.item-3 {
    transform: translateY(5px);
}

.testimonial-item p {
    font-size: 16px;
    font-style: italic;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.testimonial-author {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-section {
    background-color: var(--primary-color);
    padding: 100px 40px;
    margin: 80px 0;
}

.form-container-offset {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 60px;
    border-radius: 12px;
    transform: translateX(-40px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

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

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px 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(44, 95, 125, 0.1);
}

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

.btn-submit:hover {
    background-color: #c96630;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 118, 59, 0.3);
}

.final-cta {
    max-width: 1200px;
    margin: 100px auto;
    padding: 80px 40px;
    text-align: center;
    background-color: var(--bg-light);
    border-radius: 12px;
    transform: rotate(-1deg);
}

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

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

.cta-secondary {
    display: inline-block;
    padding: 16px 40px;
    background-color: var(--primary-color);
    color: white;
    font-weight: 600;
    font-size: 16px;
    border-radius: 6px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.cta-secondary:hover {
    background-color: #1f4458;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(44, 95, 125, 0.3);
}

.footer-asymmetric {
    background-color: var(--text-dark);
    color: white;
    padding: 60px 40px 30px;
}

.footer-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer-col ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.8;
    cursor: pointer;
}

.footer-col ul li a:hover {
    opacity: 1;
    text-decoration: underline;
}

.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: 13px;
    opacity: 0.7;
}

.page-hero-services {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 0 40px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.page-hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

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

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

.service-detail-image {
    flex: 1;
    background-color: var(--accent-1);
    border-radius: 8px;
    overflow: hidden;
}

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

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

.service-detail-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    font-weight: 700;
}

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

.service-features {
    margin: 24px 0;
    padding-left: 24px;
}

.service-features li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--text-light);
}

.service-price {
    margin-top: 28px;
    padding: 20px;
    background-color: var(--bg-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.price-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

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

.services-cta {
    background-color: var(--bg-light);
    padding: 80px 40px;
    margin: 60px 0;
}

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

.services-cta-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.about-hero {
    max-width: 1400px;
    margin: 60px auto 80px;
    padding: 0 40px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-hero-content {
    flex: 1;
}

.about-hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.about-hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.about-hero-image {
    flex: 1;
    background-color: var(--accent-2);
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(40px);
}

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

.about-story {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

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

.story-text {
    flex: 1.3;
}

.story-text h2 {
    font-size: 42px;
    margin-bottom: 28px;
    font-weight: 700;
}

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

.story-image {
    flex: 1;
    background-color: var(--accent-1);
    border-radius: 8px;
    overflow: hidden;
    transform: translateY(-60px);
}

.story-image img {
    width: 100%;
}

.values-section {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

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

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.value-item:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

.team-section {
    background-color: var(--bg-light);
    padding: 100px 40px;
}

.team-intro {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
}

.team-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    font-weight: 700;
}

.team-intro p {
    font-size: 18px;
    color: var(--text-light);
}

.team-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.team-member {
    flex: 1;
    min-width: 240px;
    max-width: 280px;
    text-align: center;
}

.team-image {
    width: 100%;
    height: 280px;
    background-color: var(--accent-1);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 16px;
}

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

.team-member h3 {
    font-size: 20px;
    margin-bottom: 8px;
    font-weight: 700;
}

.team-member p {
    font-size: 14px;
    color: var(--text-light);
}

.approach-detail {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

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

.approach-blocks {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.approach-block {
    flex: 1;
    min-width: 260px;
    padding: 36px;
    background-color: white;
    border-left: 4px solid var(--secondary-color);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-radius: 4px;
}

.approach-block h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.approach-block p {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
}

.about-cta {
    background-color: var(--primary-color);
    padding: 80px 40px;
    margin: 80px 0 0;
}

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

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

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

.contact-hero {
    max-width: 1200px;
    margin: 80px auto 60px;
    padding: 0 40px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 56px;
    margin-bottom: 20px;
    font-weight: 800;
}

.contact-hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.contact-info-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.contact-info-wrapper {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info-block {
    flex: 1;
    min-width: 320px;
}

.contact-info-block h2 {
    font-size: 36px;
    margin-bottom: 32px;
    font-weight: 700;
}

.info-item {
    margin-bottom: 32px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
    font-weight: 700;
}

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

.info-item .note {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.expectation-item {
    margin-bottom: 28px;
}

.expectation-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 700;
}

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

.contact-map-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 500px;
    background-color: var(--accent-1);
    border-radius: 12px;
    overflow: hidden;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.75);
    color: white;
    padding: 24px;
    backdrop-filter: blur(10px);
}

.map-overlay p {
    font-size: 16px;
    margin: 0;
}

.contact-faq {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 40px;
}

.faq-wrapper h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.faq-item {
    flex: 1;
    min-width: 320px;
    padding: 28px;
    background-color: var(--bg-light);
    border-radius: 8px;
}

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

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

.contact-final-cta {
    background-color: var(--bg-light);
    padding: 80px 40px;
    margin: 80px 0 0;
}

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

.contact-final-content h2 {
    font-size: 36px;
    margin-bottom: 16px;
    font-weight: 700;
}

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

.thanks-hero {
    max-width: 1000px;
    margin: 100px auto;
    padding: 0 40px;
    text-align: center;
}

.thanks-content h1 {
    font-size: 52px;
    margin-bottom: 24px;
    font-weight: 800;
    color: var(--primary-color);
}

.thanks-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 24px;
}

.thanks-details {
    margin-top: 32px;
    padding: 24px;
    background-color: var(--bg-light);
    border-radius: 8px;
    display: inline-block;
}

.thanks-details p {
    font-size: 16px;
    margin: 0;
}

.thanks-details span {
    font-weight: 700;
    color: var(--primary-color);
}

.thanks-next-steps {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

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

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

.step-item {
    flex: 1;
    min-width: 260px;
    text-align: center;
    padding: 32px;
}

.step-number {
    width: 60px;
    height: 60px;
    background-color: var(--secondary-color);
    color: white;
    font-size: 28px;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.thanks-explore {
    background-color: var(--bg-light);
    padding: 80px 40px;
}

.explore-content h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    font-weight: 700;
}

.explore-links {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.explore-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: white;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.explore-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.explore-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

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

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

.legal-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 800;
}

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

.legal-content h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 12px;
    font-weight: 700;
}

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

.legal-content ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-content ul li {
    list-style: disc;
    margin-bottom: 8px;
    color: var(--text-light);
    line-height: 1.6;
}

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

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

.legal-date {
    margin-top: 60px;
    padding-top: 24px;
    border-top: 1px solid var(--border-color);
    font-style: italic;
    color: var(--text-light);
}

@media (max-width: 1024px) {
    .hero-offset {
        flex-direction: column;
        gap: 40px;
    }

    .hero-content-left {
        transform: none;
    }

    .hero-image-right {
        transform: none;
    }

    .intro-asymmetric {
        flex-direction: column;
        gap: 40px;
    }

    .intro-image-overlap {
        transform: none;
    }

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

    .approach-right {
        transform: none;
    }

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

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

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

    .about-hero-image {
        transform: none;
    }

    .story-content-offset {
        flex-direction: column;
    }

    .story-image {
        transform: none;
    }
}

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

    .nav-items {
        gap: 16px;
        flex-wrap: wrap;
    }

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

    .hero-content-left p {
        font-size: 18px;
    }

    .intro-text-block h2 {
        font-size: 32px;
    }

    .form-container-offset {
        padding: 40px 24px;
        transform: none;
    }

    .final-cta {
        transform: none;
    }

    .footer-wrapper {
        flex-direction: column;
        gap: 32px;
    }

    .page-hero-content h1,
    .contact-hero-content h1,
    .thanks-content h1 {
        font-size: 42px;
    }

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

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