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

:root {
    --primary-color: #2d5a3d;
    --secondary-color: #8fb89a;
    --accent-color: #e8a558;
    --text-dark: #1a1a1a;
    --text-light: #4a4a4a;
    --bg-light: #f8f9f7;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.12);
}

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

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

.narrow-content {
    max-width: 740px;
    margin: 0 auto;
    padding: 0 24px;
}

.navbar {
    background: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 100;
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.ad-notice {
    font-size: 0.8rem;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-light);
    border-radius: 4px;
}

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

.nav-links a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.2s;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

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

.cookie-content a {
    color: var(--accent-color);
    text-decoration: underline;
}

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

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

.btn-accept {
    background: var(--accent-color);
    color: var(--text-dark);
}

.btn-accept:hover {
    background: #d99547;
}

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

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

.hero-visual {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: var(--secondary-color);
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.3), rgba(0,0,0,0.5));
    z-index: 1;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--bg-white);
    z-index: 2;
    max-width: 800px;
    padding: 0 24px;
}

.hero-text h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hero-text p {
    font-size: 1.3rem;
    font-weight: 300;
}

.story-intro {
    padding: 80px 0;
    background: var(--bg-white);
}

.lead-text {
    font-size: 1.3rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.problem-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.content-block {
    flex: 1;
}

.content-block h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.content-block p {
    margin-bottom: 20px;
}

.image-block {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.insight-reveal {
    padding: 80px 0;
    background: var(--bg-white);
}

.insight-reveal h2 {
    font-size: 2.2rem;
    margin-bottom: 32px;
    color: var(--primary-color);
}

.citation {
    color: var(--primary-color);
    font-weight: 600;
    text-decoration: none;
    padding: 2px 6px;
    background: var(--bg-light);
    border-radius: 3px;
}

.citation:hover {
    background: var(--secondary-color);
}

.trust-building {
    padding: 80px 0;
    background: var(--bg-light);
}

.centered-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 48px;
    color: var(--primary-color);
}

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

.feature-card {
    flex: 1;
    min-width: 300px;
    background: var(--bg-white);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.feature-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: var(--secondary-color);
}

.feature-card h3 {
    font-size: 1.3rem;
    margin: 20px 20px 12px;
    color: var(--primary-color);
}

.feature-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.testimonial-inline {
    padding: 80px 0;
    background: var(--primary-color);
    color: var(--bg-white);
}

.testimonial {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.8;
    border-left: 4px solid var(--accent-color);
    padding-left: 32px;
}

.testimonial cite {
    display: block;
    margin-top: 20px;
    font-style: normal;
    font-weight: 600;
    color: var(--accent-color);
}

.benefits-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.offset-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.text-column {
    flex: 1.2;
}

.text-column h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.benefit-list {
    list-style: none;
    margin-bottom: 28px;
}

.benefit-list li {
    padding: 12px 0 12px 32px;
    position: relative;
}

.benefit-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
    font-size: 1.2rem;
}

.note-text {
    font-size: 0.9rem;
    color: var(--text-light);
    font-style: italic;
}

.visual-column {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.service-reveal {
    padding: 80px 0;
    background: var(--bg-light);
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 48px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 28px;
}

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    box-shadow: var(--shadow);
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.service-card.featured {
    border: 2px solid var(--accent-color);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.6;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 24px 0;
}

.period {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-light);
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-select:hover {
    background: #234832;
}

.form-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.form-section h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
    color: var(--primary-color);
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
    color: var(--text-light);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.selected-service-display {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 6px;
    margin-bottom: 24px;
}

.selected-service-display p {
    margin-bottom: 8px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--accent-color);
    color: var(--text-dark);
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: #d99547;
}

.final-reassurance {
    padding: 80px 0;
    background: var(--bg-light);
}

.final-reassurance h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.references-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.references-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.references-list {
    padding-left: 24px;
}

.references-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: var(--primary-color);
    text-decoration: none;
}

.references-list a:hover {
    text-decoration: underline;
}

.footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 60px 0 20px;
}

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

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

.footer-column h4 {
    margin-bottom: 16px;
    color: var(--accent-color);
}

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

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

.footer-column a {
    color: var(--bg-white);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-column a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
}

.disclaimer {
    font-size: 0.85rem;
    color: #999;
    margin-bottom: 16px;
    line-height: 1.6;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.thanks-hero {
    padding: 100px 0;
    background: var(--bg-light);
}

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

.success-icon {
    width: 80px;
    height: 80px;
    background: var(--accent-color);
    color: var(--bg-white);
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.next-steps {
    margin: 60px 0;
    text-align: left;
}

.next-steps h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-number {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--bg-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    flex-shrink: 0;
}

.step-text h3 {
    margin-bottom: 8px;
    color: var(--primary-color);
}

.service-confirmation {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: var(--shadow);
}

.service-detail h3 {
    color: var(--primary-color);
    margin-bottom: 12px;
}

.price-detail {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--accent-color);
}

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

.btn-primary, .btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--bg-white);
}

.btn-primary:hover {
    background: #234832;
}

.btn-secondary {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--bg-white);
}

.page-header {
    padding: 80px 0 40px;
    background: var(--bg-light);
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
}

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

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

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

.service-visual {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.service-details {
    flex: 1;
}

.service-details h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-description {
    font-size: 1.1rem;
    margin-bottom: 24px;
    color: var(--text-light);
}

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

.service-features li {
    padding: 10px 0 10px 28px;
    position: relative;
    line-height: 1.6;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-weight: 700;
}

.service-pricing {
    margin-bottom: 24px;
}

.price-amount {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.price-period {
    font-size: 1rem;
    color: var(--text-light);
}

.btn-service {
    display: inline-block;
    padding: 14px 32px;
    background: var(--accent-color);
    color: var(--text-dark);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.2s;
}

.btn-service:hover {
    background: #d99547;
}

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

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

.cta-content h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

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

.about-intro {
    padding: 80px 0;
    background: var(--bg-white);
}

.intro-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-text {
    flex: 1;
}

.intro-text h1 {
    font-size: 2.5rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.intro-visual {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.philosophy-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.philosophy-section h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.values-section {
    padding: 80px 0;
    background: var(--bg-white);
}

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

.value-card {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: var(--bg-light);
    padding: 32px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.approach-detail {
    padding: 80px 0;
    background: var(--bg-light);
}

.detail-layout {
    display: flex;
    gap: 60px;
    align-items: center;
}

.detail-visual {
    flex: 1;
    background-color: var(--secondary-color);
}

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

.detail-content {
    flex: 1;
}

.detail-content h2 {
    font-size: 2rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

.team-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.team-section h2 {
    font-size: 2rem;
    margin-bottom: 28px;
    color: var(--primary-color);
}

.commitment-section {
    padding: 80px 0;
    background: var(--bg-light);
}

.commitment-content h2 {
    font-size: 2.2rem;
    margin-bottom: 48px;
    text-align: center;
    color: var(--primary-color);
}

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

.commitment-item {
    flex: 1 1 calc(50% - 20px);
    min-width: 280px;
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
}

.commitment-item h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.cta-section {
    padding: 80px 0;
    background: var(--bg-white);
}

.cta-box {
    text-align: center;
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 40px;
    border-radius: 12px;
}

.cta-box h2 {
    font-size: 2.2rem;
    margin-bottom: 16px;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 32px;
}

.contact-header {
    padding: 80px 0 40px;
    background: var(--bg-light);
    text-align: center;
}

.contact-header h1 {
    font-size: 3rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.contact-content {
    padding: 60px 0;
}

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

.contact-info {
    flex: 1;
}

.info-block {
    margin-bottom: 40px;
}

.info-block h2 {
    font-size: 1.8rem;
    margin-bottom: 24px;
    color: var(--primary-color);
}

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

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.faq-item {
    margin-bottom: 24px;
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--primary-color);
}

.contact-visual {
    flex: 1;
    background-color: var(--secondary-color);
}

.contact-visual img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    margin-bottom: 20px;
}

.visual-text {
    padding: 20px;
    background: var(--bg-white);
    border-radius: 8px;
}

.visual-text h3 {
    margin-bottom: 12px;
    color: var(--primary-color);
}

.quick-action {
    padding: 80px 0;
    background: var(--bg-light);
}

.action-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.action-box h2 {
    font-size: 2rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.action-box p {
    margin-bottom: 32px;
    color: var(--text-light);
}

.legal-page {
    padding: 80px 0;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.update-date {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 40px;
}

.legal-page h2 {
    font-size: 1.8rem;
    margin-top: 40px;
    margin-bottom: 16px;
    color: var(--primary-color);
}

.legal-page h3 {
    font-size: 1.3rem;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text-dark);
}

.legal-page p {
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-page li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.legal-page a {
    color: var(--primary-color);
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text p {
        font-size: 1.1rem;
    }

    .split-layout,
    .offset-layout,
    .service-item,
    .intro-layout,
    .detail-layout,
    .contact-layout {
        flex-direction: column;
    }

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

    .nav-links {
        gap: 16px;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

    .service-cards {
        flex-direction: column;
    }

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

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}