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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3436;
    color: #ffffff;
    padding: 20px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.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;
    margin: 0;
}

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

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

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

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

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

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

.main-header {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #e17055;
}

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

.main-nav a {
    text-decoration: none;
    color: #2d3436;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

.ad-notice {
    font-size: 12px;
    color: #636e72;
    background-color: #f5f5f5;
    padding: 6px 12px;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

.hero-left,
.hero-right {
    flex: 1;
}

.hero-left {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    background-color: #fef5f1;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2d3436;
}

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #636e72;
}

.hero-right {
    background-color: #e8e8e8;
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background-color: #e17055;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background-color: #d63031;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 112, 85, 0.3);
}

.story-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

.story-intro h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
}

.story-intro p {
    font-size: 18px;
    line-height: 1.8;
    color: #636e72;
}

.split-reverse {
    display: flex;
}

.split-left,
.split-right {
    flex: 1;
}

.split-left {
    background-color: #d4d4d4;
    overflow: hidden;
}

.split-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-right {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.content-box h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d3436;
}

.content-box p {
    font-size: 16px;
    margin-bottom: 16px;
    color: #636e72;
}

.insight-section {
    padding: 80px 20px;
    background-color: #2d3436;
}

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

.insight-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

.insight-card h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #e17055;
}

.insight-card p {
    font-size: 16px;
    color: #636e72;
}

.testimonial-split {
    display: flex;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
}

.testimonial-left {
    display: flex;
    align-items: center;
    padding: 60px;
    background-color: #fef5f1;
}

.testimonial-content blockquote {
    font-size: 22px;
    line-height: 1.6;
    font-style: italic;
    color: #2d3436;
    margin-bottom: 20px;
}

.testimonial-content cite {
    display: block;
    font-size: 16px;
    font-style: normal;
    color: #636e72;
    margin-top: 16px;
}

.testimonial-right {
    background-color: #d4d4d4;
    overflow: hidden;
}

.testimonial-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-preview {
    padding: 80px 20px;
    background-color: #ffffff;
}

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 16px;
    color: #2d3436;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #636e72;
    margin-bottom: 60px;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

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

.service-info {
    padding: 24px;
}

.service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2d3436;
}

.service-info p {
    font-size: 15px;
    color: #636e72;
    margin-bottom: 16px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #e17055;
    margin-bottom: 16px;
}

.btn-select {
    width: 100%;
    padding: 12px 24px;
    background-color: #2d3436;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #e17055;
}

.service-card.selected .btn-select {
    background-color: #e17055;
}

.form-section {
    padding: 80px 20px;
    background-color: #f8f9fa;
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 12px;
    color: #2d3436;
}

.form-section > p {
    text-align: center;
    font-size: 16px;
    color: #636e72;
    margin-bottom: 40px;
}

.order-form {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #dfe6e9;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group input[readonly] {
    background-color: #f8f9fa;
    cursor: not-allowed;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #e17055;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #d63031;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 112, 85, 0.3);
}

.trust-section {
    padding: 80px 20px;
    background-color: #ffffff;
}

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

.trust-item {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    background-color: #fef5f1;
    border-radius: 8px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3436;
}

.trust-item p {
    font-size: 16px;
    color: #636e72;
}

.main-footer {
    background-color: #2d3436;
    color: #ffffff;
    padding: 60px 20px 30px;
}

.footer-grid {
    display: flex;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: #e17055;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    color: #b2bec3;
}

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

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

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

.footer-col ul li a:hover {
    color: #e17055;
}

.footer-bottom {
    border-top: 1px solid #4a4a4a;
    padding-top: 30px;
    text-align: center;
}

.disclaimer {
    font-size: 13px;
    color: #b2bec3;
    margin-bottom: 16px;
    line-height: 1.6;
}

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

.thanks-hero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 60vh;
    padding: 60px 20px;
    background-color: #fef5f1;
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #2d3436;
}

.thanks-content p {
    font-size: 20px;
    color: #636e72;
    margin-bottom: 16px;
}

.thanks-info {
    background-color: #ffffff;
    padding: 24px;
    border-radius: 8px;
    margin: 32px auto 0;
    max-width: 500px;
}

.thanks-info p {
    font-size: 16px;
    margin-bottom: 8px;
}

.page-header {
    padding: 60px 20px;
    background-color: #2d3436;
    text-align: center;
    color: #ffffff;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 18px;
    color: #b2bec3;
}

.page-content {
    padding: 80px 20px;
    background-color: #ffffff;
}

.page-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    margin-top: 40px;
    color: #2d3436;
}

.page-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
    margin-top: 32px;
    color: #2d3436;
}

.page-content p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #636e72;
}

.page-content ul,
.page-content ol {
    margin-bottom: 16px;
    padding-left: 24px;
}

.page-content li {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 8px;
    color: #636e72;
}

.contact-split {
    display: flex;
    gap: 60px;
    padding: 80px 20px;
}

.contact-info,
.contact-map {
    flex: 1;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #2d3436;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d3436;
    font-weight: 600;
}

.contact-detail p {
    font-size: 16px;
    color: #636e72;
    line-height: 1.6;
}

.contact-map {
    background-color: #e8e8e8;
    border-radius: 8px;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 968px) {
    .hero-split,
    .split-reverse,
    .testimonial-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-left,
    .split-right,
    .testimonial-left,
    .testimonial-right {
        min-height: 400px;
    }

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

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

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

    .contact-split {
        flex-direction: column;
    }

    .main-nav {
        display: none;
    }

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

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