* {
    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;
}

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

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

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

.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;
    flex-wrap: wrap;
    gap: 15px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #c76d8e;
    letter-spacing: 1px;
}

.ad-notice {
    font-size: 11px;
    color: #666;
    background-color: #f9f9f9;
    padding: 4px 12px;
    border-radius: 3px;
    border: 1px solid #e0e0e0;
}

.nav {
    display: flex;
    gap: 25px;
}

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

.nav a:hover {
    color: #c76d8e;
}

.hero-section {
    margin-top: 0;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    padding: 40px 20px;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    max-width: 600px;
    margin: 0 auto;
}

.intro-section {
    padding: 80px 20px;
    background-color: #faf9f8;
}

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
    text-align: center;
}

.intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
    text-align: center;
}

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

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #2c3e50;
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    width: 100%;
    max-width: 360px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

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

.card-image {
    height: 240px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.card-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #c76d8e;
    margin-bottom: 20px;
}

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

.btn-card:hover {
    background-color: #b15a78;
}

.benefits-section {
    padding: 80px 20px;
    background-color: #faf9f8;
}

.benefits-layout {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.benefits-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
}

.benefits-image img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 12px;
}

.benefits-content {
    flex: 1;
    min-width: 300px;
}

.benefits-content h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 15px 0;
    padding-left: 30px;
    position: relative;
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.benefits-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #c76d8e;
    font-weight: 700;
    font-size: 18px;
}

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

.form-header {
    text-align: center;
    margin-bottom: 40px;
}

.form-header h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-header p {
    font-size: 16px;
    color: #666;
}

.contact-form {
    background-color: #faf9f8;
    padding: 40px;
    border-radius: 12px;
}

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

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

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

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

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

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

.info-section {
    padding: 60px 20px;
    background-color: #fff9f5;
}

.info-card {
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #c76d8e;
}

.info-card h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.info-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

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

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

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

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

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

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

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

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    border-top: 1px solid #3a4f64;
    padding-top: 20px;
    text-align: center;
}

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

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

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    min-width: 250px;
    font-size: 14px;
    line-height: 1.5;
}

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

.btn-primary {
    padding: 10px 25px;
    background-color: #c76d8e;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #b15a78;
}

.btn-secondary {
    padding: 10px 25px;
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #ffffff;
    color: #2c3e50;
}

.page-hero {
    padding: 80px 20px;
    background-color: #faf9f8;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.page-hero p {
    font-size: 18px;
    color: #666;
}

.about-content {
    padding: 60px 20px;
}

.about-intro {
    margin-bottom: 60px;
}

.about-intro h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.about-intro p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
}

.mission-card {
    background-color: #fff9f5;
    padding: 40px;
    border-radius: 12px;
    margin-bottom: 60px;
}

.mission-card h3 {
    font-size: 26px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.mission-card p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
}

.values-section {
    margin-bottom: 60px;
}

.values-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 250px;
    background-color: #faf9f8;
    padding: 30px;
    border-radius: 12px;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #c76d8e;
}

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

.story-section {
    margin-bottom: 60px;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.story-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.approach-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.approach-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.cta-section {
    padding: 80px 20px;
    background-color: #faf9f8;
}

.cta-box {
    text-align: center;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.cta-box p {
    font-size: 17px;
    margin-bottom: 30px;
    color: #555;
}

.services-detailed {
    padding: 60px 20px;
}

.service-detail-card {
    max-width: 900px;
    margin: 0 auto 50px;
    background-color: #faf9f8;
    border-radius: 12px;
    padding: 40px;
}

.service-detail-content h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #c76d8e;
    margin-bottom: 20px;
}

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.service-detail-content h4 {
    font-size: 18px;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #2c3e50;
}

.service-detail-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.service-detail-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.btn-service {
    display: inline-block;
    padding: 14px 35px;
    background-color: #c76d8e;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 20px;
    transition: background-color 0.3s ease;
}

.btn-service:hover {
    background-color: #b15a78;
}

.services-note {
    padding: 60px 20px;
    background-color: #fff9f5;
}

.note-box {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border-left: 4px solid #c76d8e;
}

.note-box h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.note-box p {
    font-size: 14px;
    line-height: 1.7;
    color: #666;
}

.contact-section {
    padding: 60px 20px;
}

.contact-layout {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
}

.contact-item {
    margin-bottom: 35px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #c76d8e;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
}

.contact-note {
    background-color: #faf9f8;
    padding: 25px;
    border-radius: 8px;
    margin-top: 30px;
}

.contact-note p {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
}

.contact-visual {
    flex: 1;
    min-width: 300px;
}

.contact-image {
    padding: 40px;
    border-radius: 12px;
    background-color: #faf9f8;
}

.contact-image h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-image p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 30px;
}

.faq-section {
    padding: 60px 20px;
    background-color: #faf9f8;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

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

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 25px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 17px;
    margin-bottom: 12px;
    color: #2c3e50;
}

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

.thanks-section {
    padding: 100px 20px;
    background-color: #faf9f8;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.thanks-card h1 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.thanks-card p {
    font-size: 17px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.thanks-info {
    background-color: #faf9f8;
    padding: 30px;
    border-radius: 8px;
    margin: 40px 0;
    text-align: left;
}

.thanks-info h3 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    padding: 10px 0;
    padding-left: 25px;
    position: relative;
}

.thanks-info ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #c76d8e;
    font-weight: 700;
}

.thanks-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

.legal-content {
    padding: 60px 20px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.legal-content em {
    font-size: 14px;
    color: #999;
    display: block;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 20px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #c76d8e;
}

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

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 25px;
}

.legal-content ul li {
    font-size: 15px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 10px;
}

.legal-content a {
    color: #c76d8e;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease;
}

.legal-content a:hover {
    border-bottom-color: #c76d8e;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        width: 100%;
        flex-wrap: wrap;
        gap: 15px;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 16px;
    }

    .benefits-layout {
        flex-direction: column;
    }

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

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