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

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c2c2c;
    background-color: #ffffff;
}

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

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

a:hover {
    opacity: 0.7;
}

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

.ad-disclosure {
    background-color: #1a1a1a;
    color: #ffffff;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.main-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 29px;
    z-index: 999;
}

.nav-brand {
    font-size: 24px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    font-size: 15px;
    font-weight: 500;
}

.hero-split {
    display: flex;
    min-height: 90vh;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #f9f9f9;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -1px;
}

.hero-content p {
    font-size: 19px;
    color: #4a4a4a;
    margin-bottom: 20px;
    max-width: 520px;
}

.hero-image {
    flex: 1;
    display: flex;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 16px 36px;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 16px;
    font-size: 16px;
    align-self: flex-start;
}

.cta-primary:hover {
    opacity: 0.85;
}

.story-section {
    display: flex;
    min-height: 80vh;
}

.story-image {
    flex: 1;
    display: flex;
    overflow: hidden;
}

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

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.story-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
}

.story-text p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 24px;
    max-width: 540px;
}

.insight-split {
    display: flex;
    min-height: 80vh;
}

.insight-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #fafafa;
}

.insight-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
    line-height: 1.2;
}

.insight-text p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 24px;
    max-width: 540px;
}

.benefit-list {
    list-style: none;
    margin-top: 32px;
}

.benefit-list li {
    padding: 16px 0;
    border-bottom: 1px solid #e0e0e0;
    font-size: 16px;
    color: #2c2c2c;
}

.benefit-list li:first-child {
    border-top: 1px solid #e0e0e0;
}

.insight-image {
    flex: 1;
    display: flex;
    overflow: hidden;
}

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

.trust-section {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

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

.testimonials-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #2c2c2c;
    margin-bottom: 24px;
}

.testimonial-author {
    font-size: 14px;
    color: #6a6a6a;
    font-weight: 600;
}

.services-split {
    display: flex;
    min-height: 90vh;
}

.services-image {
    flex: 1;
    display: flex;
    overflow: hidden;
}

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

.services-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

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

.services-content > p {
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 48px;
}

.service-items {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.service-item {
    padding-bottom: 32px;
    border-bottom: 1px solid #e0e0e0;
}

.service-item:last-child {
    border-bottom: none;
}

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

.service-item p {
    font-size: 15px;
    color: #6a6a6a;
    margin-bottom: 12px;
    line-height: 1.6;
}

.service-price {
    display: inline-block;
    font-size: 18px;
    font-weight: 700;
    color: #2c2c2c;
}

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c2c2c;
    padding: 14px 32px;
    border: 2px solid #2c2c2c;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 32px;
    font-size: 15px;
}

.cta-secondary:hover {
    background-color: #2c2c2c;
    color: #ffffff;
}

.value-section {
    padding: 100px 60px;
    background-color: #1a1a1a;
    color: #ffffff;
}

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

.value-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
}

.value-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #e5e5e5;
}

.order-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.order-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.order-info {
    flex: 1;
}

.order-info h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.2;
}

.order-info > p {
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 48px;
}

.order-benefits {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.order-benefit strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.order-benefit p {
    font-size: 15px;
    color: #6a6a6a;
}

.order-form-container {
    flex: 1;
}

.order-form {
    background-color: #f9f9f9;
    padding: 48px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    font-family: inherit;
    background-color: #ffffff;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2c2c2c;
}

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 16px 32px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    margin-top: 8px;
}

.btn-submit:hover {
    opacity: 0.85;
}

.disclaimer-section {
    padding: 60px 40px;
    background-color: #f5f5f5;
}

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

.disclaimer-content p {
    font-size: 13px;
    color: #6a6a6a;
    line-height: 1.8;
    text-align: center;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 60px 40px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1;
}

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

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

.footer-column p {
    font-size: 14px;
    color: #b0b0b0;
    line-height: 1.8;
}

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

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

.footer-column ul li a {
    font-size: 14px;
    color: #b0b0b0;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: #888888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c2c2c;
    color: #ffffff;
    padding: 24px 40px;
    display: none;
    z-index: 10000;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.cookie-content p {
    font-size: 14px;
    line-height: 1.6;
    flex: 1;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 28px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 14px;
}

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

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

.cookie-accept:hover,
.cookie-reject:hover {
    opacity: 0.85;
}

.page-hero {
    padding: 120px 60px 80px;
    background-color: #f9f9f9;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.1;
}

.page-hero p {
    font-size: 19px;
    color: #6a6a6a;
    max-width: 700px;
    margin: 0 auto;
}

.about-split {
    display: flex;
    min-height: 70vh;
}

.about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.about-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
}

.about-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 24px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    display: flex;
    overflow: hidden;
}

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

.philosophy-section {
    display: flex;
    min-height: 80vh;
}

.philosophy-image {
    flex: 1;
    display: flex;
    overflow: hidden;
}

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

.philosophy-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #fafafa;
}

.philosophy-content h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 28px;
}

.philosophy-content p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 24px;
    line-height: 1.7;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
}

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

.value-item p {
    font-size: 15px;
    color: #6a6a6a;
}

.team-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.team-intro {
    font-size: 18px;
    color: #6a6a6a;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.process-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-card {
    flex: 1;
    padding: 36px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.process-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.process-card p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.7;
}

.mission-section {
    padding: 100px 60px;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.mission-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 32px;
}

.mission-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: #e5e5e5;
}

.service-detail-split {
    display: flex;
    min-height: 80vh;
}

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

.service-detail-image {
    flex: 1;
    display: flex;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
}

.service-tag {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #888888;
    margin-bottom: 16px;
}

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

.service-detail-content > p {
    font-size: 17px;
    color: #4a4a4a;
    margin-bottom: 36px;
    line-height: 1.7;
}

.service-features h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    margin-top: 32px;
}

.service-features h3:first-child {
    margin-top: 0;
}

.service-features ul {
    list-style: none;
    margin-bottom: 24px;
}

.service-features li {
    padding: 12px 0 12px 24px;
    font-size: 15px;
    color: #4a4a4a;
    position: relative;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c2c2c;
    font-weight: 700;
}

.service-features p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.7;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
}

.price-label {
    font-size: 14px;
    color: #888888;
    font-weight: 600;
}

.price-value {
    font-size: 28px;
    font-weight: 700;
    color: #2c2c2c;
}

.additional-services {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

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

.additional-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.additional-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.additional-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.additional-card p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.7;
    margin-bottom: 24px;
}

.additional-price {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: #2c2c2c;
}

.comparison-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

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

.comparison-content > p {
    font-size: 18px;
    color: #6a6a6a;
    text-align: center;
    margin-bottom: 48px;
}

.comparison-guide {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.guide-item {
    padding: 28px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

.guide-item strong {
    display: block;
    font-size: 18px;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.guide-item p {
    font-size: 15px;
    color: #6a6a6a;
}

.comparison-note {
    text-align: center;
    margin-top: 40px;
    font-size: 16px;
    color: #4a4a4a;
}

.comparison-note a {
    color: #2c2c2c;
    font-weight: 600;
    text-decoration: underline;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info-section {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background-color: #fafafa;
}

.contact-info-section h2 {
    font-size: 38px;
    font-weight: 700;
    margin-bottom: 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 48px;
}

.contact-detail-item h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #2c2c2c;
}

.contact-detail-item p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.7;
}

.contact-note p {
    font-size: 14px;
    color: #888888;
    line-height: 1.7;
    padding: 20px;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.contact-image-section {
    flex: 1;
    display: flex;
    overflow: hidden;
}

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

.visit-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.visit-content {
    max-width: 1000px;
    margin: 0 auto;
}

.visit-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 24px;
}

.visit-content > p {
    font-size: 17px;
    color: #6a6a6a;
    margin-bottom: 48px;
}

.visit-details {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
}

.visit-item {
    flex: 1;
}

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

.visit-item p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.7;
}

.visit-recommendation {
    font-size: 15px;
    color: #4a4a4a;
    padding: 24px;
    background-color: #f9f9f9;
    border-radius: 8px;
    border-left: 4px solid #2c2c2c;
}

.faq-section {
    padding: 100px 60px;
    background-color: #f5f5f5;
}

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

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

.faq-item {
    flex: 1 1 calc(50% - 16px);
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.faq-item p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.7;
}

.response-section {
    padding: 100px 60px;
    background-color: #ffffff;
}

.response-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.response-timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.timeline-number {
    width: 48px;
    height: 48px;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.timeline-content p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.7;
}

.thanks-hero {
    padding: 120px 60px 80px;
    background-color: #f9f9f9;
    text-align: center;
}

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #2c2c2c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

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

.thanks-message {
    font-size: 18px;
    color: #6a6a6a;
}

.thanks-details {
    padding: 100px 60px;
    background-color: #ffffff;
}

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

.thanks-details-content h2 {
    font-size: 38px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.next-step {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

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

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

.step-content p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.7;
}

.thanks-info {
    padding: 80px 60px;
    background-color: #f5f5f5;
}

.thanks-info-grid {
    display: flex;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.info-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
}

.info-card p {
    font-size: 15px;
    color: #6a6a6a;
    line-height: 1.7;
}

.thanks-explore {
    padding: 100px 60px;
    background-color: #ffffff;
}

.explore-content {
    max-width: 1000px;
    margin: 0 auto;
}

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

.explore-links {
    display: flex;
    gap: 32px;
}

.explore-link {
    flex: 1;
    padding: 36px;
    background-color: #f9f9f9;
    border-radius: 8px;
    display: block;
}

.explore-link:hover {
    background-color: #f0f0f0;
}

.explore-link h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #2c2c2c;
}

.explore-link p {
    font-size: 15px;
    color: #6a6a6a;
}

.thanks-reminder {
    padding: 80px 60px;
    background-color: #2c2c2c;
    color: #ffffff;
}

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

.reminder-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #e5e5e5;
}

.legal-page {
    padding: 80px 60px 100px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
}

.legal-intro {
    font-size: 15px;
    color: #888888;
    margin-bottom: 48px;
}

.legal-section {
    margin-bottom: 48px;
}

.legal-section h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-top: 32px;
}

.legal-section h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    margin-top: 24px;
}

.legal-section p {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.legal-section ul {
    margin: 16px 0 16px 24px;
}

.legal-section ul li {
    font-size: 15px;
    color: #4a4a4a;
    line-height: 1.8;
    margin-bottom: 8px;
}

.legal-section a {
    color: #2c2c2c;
    text-decoration: underline;
}

.cookie-table {
    margin: 20px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background-color: #f9f9f9;
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table td {
    padding: 12px 16px;
    font-size: 14px;
    color: #4a4a4a;
    border-bottom: 1px solid #e5e5e5;
}

.cookie-table tr:last-child td {
    border-bottom: none;
}

@media (max-width: 1024px) {
    .hero-split,
    .story-section,
    .insight-split,
    .services-split,
    .about-split,
    .philosophy-section,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .testimonials-grid,
    .process-grid,
    .additional-grid,
    .visit-details,
    .explore-links {
        flex-direction: column;
    }

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

    .faq-item {
        flex: 1 1 100%;
    }

    .order-split,
    .thanks-info-grid {
        flex-direction: column;
        gap: 40px;
    }

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

    .footer-column {
        flex: 1 1 calc(50% - 20px);
    }

    .nav-links {
        gap: 20px;
    }

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

    .cookie-content {
        flex-direction: column;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .main-nav {
        padding: 16px 24px;
    }

    .hero-content,
    .story-text,
    .insight-text,
    .services-content,
    .about-content,
    .philosophy-content,
    .service-detail-content,
    .contact-info-section {
        padding: 60px 32px;
    }

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

    .page-hero {
        padding: 80px 32px 60px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .trust-section,
    .team-section,
    .order-section,
    .additional-services,
    .comparison-section,
    .visit-section,
    .faq-section,
    .response-section,
    .thanks-details,
    .thanks-info,
    .thanks-explore {
        padding: 60px 32px;
    }

    .value-section,
    .mission-section {
        padding: 60px 32px;
    }

    .legal-page {
        padding: 60px 32px;
    }

    .main-footer {
        padding: 60px 32px 32px;
    }

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

    .footer-column {
        flex: 1 1 100%;
    }

    .nav-links {
        display: none;
    }
}
