* {
    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: #1a1a1a;
    background-color: #ffffff;
}

.header-asymmetric {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 1.2rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.brand-block {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
    letter-spacing: -0.02em;
}

.ad-label {
    font-size: 0.7rem;
    color: #666;
    font-weight: 400;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}

.main-nav a:hover {
    color: #0066cc;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 200;
    display: none;
}

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

.cookie-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

.btn-accept,
.btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.2s;
}

.btn-accept {
    background-color: #0066cc;
    color: #ffffff;
}

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

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

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

.hero-offset {
    display: flex;
    min-height: 90vh;
    align-items: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

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

.hero-content-left h1 {
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.hero-subtitle {
    font-size: 1.25rem;
    line-height: 1.7;
    margin-bottom: 2.5rem;
    color: #333;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #0066cc;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.cta-primary:hover {
    background-color: #0052a3;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 102, 204, 0.3);
}

.hero-image-right {
    flex: 1;
    position: relative;
}

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

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

.intro-text-block {
    flex: 1.2;
    padding-left: 5%;
}

.intro-text-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.intro-text-block p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #444;
}

.intro-visual {
    flex: 0.8;
    background-color: #f9f9f9;
}

.intro-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.services-offset {
    padding: 7rem 2rem;
    background-color: #fafafa;
}

.services-header-diagonal {
    max-width: 700px;
    margin: 0 0 4rem 8%;
}

.services-header-diagonal h2 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.services-header-diagonal p {
    font-size: 1.15rem;
    color: #555;
    line-height: 1.7;
}

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

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

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

.service-card.offset-1 {
    flex: 1 1 calc(48% - 1.25rem);
    margin-left: 2%;
}

.service-card.offset-2 {
    flex: 1 1 calc(48% - 1.25rem);
    margin-right: 2%;
}

.service-card.offset-3 {
    flex: 1 1 calc(48% - 1.25rem);
    margin-left: 6%;
}

.service-card.offset-4 {
    flex: 1 1 calc(48% - 1.25rem);
    margin-right: 6%;
}

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    background-color: #e0e0e0;
}

.service-card h3 {
    font-size: 1.5rem;
    margin: 1.5rem 1.5rem 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-card p {
    padding: 0 1.5rem;
    margin-bottom: 1.5rem;
    color: #555;
    line-height: 1.6;
    flex-grow: 1;
}

.price-tag {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #0066cc;
    padding: 0 1.5rem;
    margin-bottom: 1rem;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.8rem 1.5rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #0052a3;
}

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

.trust-content {
    flex: 1;
    padding-right: 2rem;
}

.trust-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.principle-block {
    margin-bottom: 2.5rem;
}

.principle-block h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.principle-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.trust-image {
    flex: 0.9;
    background-color: #f0f0f0;
}

.trust-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.form-section-inline {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

.form-container-diagonal {
    max-width: 700px;
    margin: 0 auto 0 15%;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-container-diagonal h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.form-intro {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.6;
}

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

.selected-service-display {
    background-color: #e8f4fd;
    padding: 1.2rem;
    border-radius: 6px;
    margin-bottom: 1rem;
}

.selected-service-display p {
    margin: 0.3rem 0;
    color: #1a1a1a;
}

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

.form-group label {
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #0066cc;
}

.btn-submit {
    padding: 1rem 2rem;
    background-color: #0066cc;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background-color 0.3s;
}

.btn-submit:hover {
    background-color: #0052a3;
}

.final-cta-offset {
    padding: 6rem 2rem;
    background-color: #1a1a1a;
    color: #ffffff;
}

.final-text {
    max-width: 800px;
    margin: 0 auto 0 10%;
}

.final-text h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.final-text p {
    font-size: 1.2rem;
    line-height: 1.7;
}

.footer-asymmetric {
    background-color: #0f0f0f;
    color: #cccccc;
    padding: 4rem 2rem 2rem;
}

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

.footer-block {
    flex: 1;
    min-width: 250px;
}

.footer-block h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 600;
}

.footer-block p {
    line-height: 1.6;
    color: #aaa;
}

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

.footer-block ul li {
    margin-bottom: 0.5rem;
}

.footer-block ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #aaa;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #333;
    font-size: 0.9rem;
    color: #888;
}

.about-hero-offset {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.about-intro {
    max-width: 900px;
    margin: 0 0 0 10%;
}

.about-intro h1 {
    font-size: 3.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #333;
}

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

.story-image-left {
    flex: 1;
    background-color: #f0f0f0;
}

.story-image-left img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.story-content-right {
    flex: 1;
    padding-left: 2rem;
}

.story-content-right h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.story-content-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: #444;
}

.values-diagonal {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.values-diagonal h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1400px;
    margin: 0 auto;
}

.value-item {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.team-offset-section {
    display: flex;
    flex-direction: column;
    padding: 6rem 2rem;
    gap: 3rem;
}

.team-content {
    max-width: 900px;
    margin: 0 0 0 8%;
}

.team-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.team-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.2rem;
    color: #444;
}

.team-image {
    background-color: #f0f0f0;
}

.team-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.approach-inline {
    padding: 6rem 2rem;
    background-color: #ffffff;
}

.approach-inline h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-steps {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.step-block {
    flex: 1 1 calc(50% - 1.25rem);
    padding: 2rem;
    border-left: 4px solid #0066cc;
    background-color: #fafafa;
}

.step-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.step-block h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.step-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.cta-about-offset {
    padding: 6rem 2rem;
    background: linear-gradient(135deg, #0066cc 0%, #0052a3 100%);
}

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

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 1rem 2.5rem;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn-primary {
    background-color: #ffffff;
    color: #0066cc;
}

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

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

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

.services-hero-diagonal {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.services-hero-diagonal h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    max-width: 900px;
    margin-left: 8%;
    color: #1a1a1a;
    font-weight: 800;
}

.services-intro {
    font-size: 1.2rem;
    max-width: 800px;
    margin-left: 8%;
    line-height: 1.8;
    color: #333;
}

.services-detailed-offset {
    padding: 5rem 2rem;
}

.service-detail-card {
    display: flex;
    gap: 3rem;
    max-width: 1400px;
    margin: 0 auto 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    align-items: center;
}

.service-detail-card.offset-right {
    margin-left: 5%;
}

.service-detail-card.offset-left {
    margin-right: 5%;
}

.service-detail-card.offset-center {
    margin-left: auto;
    margin-right: auto;
}

.service-detail-image {
    flex: 1;
    background-color: #f0f0f0;
}

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

.service-detail-content {
    flex: 1;
    padding: 3rem;
}

.service-detail-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.service-detail-desc {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.service-detail-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.service-includes {
    list-style: none;
    margin-bottom: 2rem;
}

.service-includes li {
    padding-left: 1.5rem;
    margin-bottom: 0.8rem;
    position: relative;
    color: #444;
    line-height: 1.6;
}

.service-includes li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0066cc;
    font-weight: 700;
}

.service-pricing-block {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.price-large {
    font-size: 2.2rem;
    font-weight: 700;
    color: #0066cc;
}

.form-section-services {
    padding: 7rem 2rem;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.contact-hero-offset {
    padding: 6rem 2rem 4rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
}

.contact-hero-offset h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    max-width: 800px;
    margin-left: 10%;
    color: #1a1a1a;
    font-weight: 800;
}

.contact-intro {
    font-size: 1.2rem;
    max-width: 700px;
    margin-left: 10%;
    line-height: 1.8;
    color: #333;
}

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

.contact-info-block {
    flex: 1;
    padding-right: 2rem;
}

.contact-info-block h2 {
    font-size: 2.5rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.info-item {
    margin-bottom: 2.5rem;
}

.info-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.info-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.info-note {
    padding: 1.5rem;
    background-color: #e8f4fd;
    border-radius: 6px;
    margin-top: 2rem;
}

.info-note p {
    margin: 0;
    color: #1a1a1a;
    line-height: 1.6;
}

.contact-visual {
    flex: 1;
    background-color: #f0f0f0;
}

.contact-visual img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}

.contact-approach-section {
    padding: 6rem 2rem;
    background-color: #fafafa;
}

.contact-approach-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.approach-timeline {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.timeline-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #0066cc;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.timeline-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.timeline-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.contact-faq-offset {
    padding: 6rem 2rem;
}

.contact-faq-offset h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    text-align: center;
    color: #1a1a1a;
    font-weight: 700;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
}

.faq-item {
    flex: 1 1 calc(50% - 1.25rem);
    background-color: #fafafa;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.faq-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.thanks-hero-center {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, #f5f7fa 0%, #ffffff 100%);
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 800;
}

.thanks-message {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    color: #333;
}

.service-confirmation {
    margin-bottom: 3rem;
}

.service-selected-box {
    background-color: #e8f4fd;
    padding: 1.5rem;
    border-radius: 6px;
    display: inline-block;
    text-align: left;
}

.service-selected-box p {
    margin: 0.5rem 0;
    color: #1a1a1a;
}

.next-steps {
    margin: 4rem 0;
}

.next-steps h2 {
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: #1a1a1a;
    font-weight: 700;
}

.steps-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.step-card {
    flex: 1 1 280px;
    max-width: 300px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.step-num {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #0066cc;
    margin-bottom: 1rem;
}

.step-card h3 {
    font-size: 1.2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.step-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
}

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

.thanks-additional-info {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.info-box {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    text-align: center;
}

.info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.info-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.info-box a {
    color: #0066cc;
    text-decoration: none;
    font-weight: 600;
}

.info-box a:hover {
    text-decoration: underline;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #fafafa;
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 4rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.legal-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 700;
}

.legal-updated {
    font-size: 0.95rem;
    color: #666;
    margin-bottom: 3rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 1.3rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
    font-weight: 600;
}

.legal-content p {
    margin-bottom: 1.2rem;
    line-height: 1.8;
    color: #444;
}

.legal-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.legal-content ul li {
    margin-bottom: 0.8rem;
    line-height: 1.7;
    color: #444;
}

.legal-content a {
    color: #0066cc;
    text-decoration: none;
}

.legal-content a:hover {
    text-decoration: underline;
}

@media (max-width: 1024px) {
    .hero-offset,
    .intro-asymmetric,
    .trust-section-split,
    .story-section-asymmetric,
    .contact-content-asymmetric {
        flex-direction: column;
    }

    .hero-content-left,
    .intro-text-block,
    .trust-content,
    .story-content-right,
    .contact-info-block {
        padding-right: 0;
        margin-left: 0;
        max-width: 100%;
    }

    .service-card.offset-1,
    .service-card.offset-2,
    .service-card.offset-3,
    .service-card.offset-4 {
        flex: 1 1 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .service-detail-card {
        flex-direction: column;
        margin-left: 0;
        margin-right: 0;
    }

    .service-detail-image img {
        min-height: 300px;
    }

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

    .value-item,
    .step-block,
    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .hero-content-left h1,
    .about-intro h1 {
        font-size: 2.5rem;
    }

    .services-hero-diagonal h1 {
        font-size: 2.2rem;
    }

    .intro-text-block h2,
    .trust-content h2,
    .story-content-right h2,
    .contact-info-block h2 {
        font-size: 2rem;
    }

    .main-nav {
        gap: 1rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 1rem;
    }

    .legal-content {
        padding: 2rem;
    }
}
