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

:root {
    --primary-color: #1a1a1a;
    --secondary-color: #2d2d2d;
    --accent-color: #8b7355;
    --light-bg: #f8f7f5;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --text-light: #999999;
    --border-color: #e0e0e0;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

a {
    color: inherit;
    text-decoration: none;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.5rem;
    z-index: 9999;
    display: none;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 -4px 20px var(--shadow);
    transition: opacity 0.3s ease;
}

.cookie-content {
    max-width: 1200px;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    text-align: center;
}

.cookie-content p {
    margin: 0;
    font-size: 0.95rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.cookie-accept,
.cookie-reject {
    padding: 0.75rem 2rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--accent-color);
    color: var(--white);
}

.cookie-accept:hover {
    background: #9d8365;
    transform: translateY(-2px);
}

.cookie-reject {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.cookie-reject:hover {
    background: var(--white);
    color: var(--primary-color);
}

.floating-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.floating-nav.scrolled {
    padding: 0.75rem 2rem;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.nav-brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-dark);
    transition: color 0.3s ease;
    position: relative;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.nav-cta:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px var(--shadow);
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.7);
}

.hero-overlay {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.4;
    opacity: 0.95;
}

.story-intro {
    max-width: 800px;
    margin: 0 auto;
    padding: 5rem 2rem;
}

.story-content h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.story-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.problem-amplification {
    background: var(--light-bg);
    padding: 5rem 2rem;
}

.split-layout {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.split-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.split-image {
    flex: 1;
    min-width: 300px;
}

.split-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

.insight-reveal {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.centered-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    line-height: 1.2;
}

.centered-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.inline-cta-block {
    background: var(--accent-color);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
    margin: 3rem 0;
}

.inline-cta-block h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.inline-cta-block button {
    background: var(--white);
    color: var(--accent-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.inline-cta-block button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.storytelling-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.narrative-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.narrative-flow img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

.narrative-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.narrative-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.trust-building {
    padding: 5rem 2rem;
    background: var(--white);
}

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

.testimonial-card {
    flex: 1;
    min-width: 300px;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.testimonial-card p {
    font-size: 1.1rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.testimonial-author {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--accent-color);
    font-style: normal;
}

.benefits-reveal {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.benefits-reveal h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.benefits-flow {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.benefit-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.benefit-item h4 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.benefit-item p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.visual-break {
    position: relative;
    height: 500px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-break img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.6);
}

.visual-break-text {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
    padding: 2rem;
}

.visual-break-text h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

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

.mid-cta {
    background: var(--primary-color);
    color: var(--white);
    padding: 3rem 2rem;
    text-align: center;
}

.mid-cta p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.mid-cta button {
    background: var(--accent-color);
    color: var(--white);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.mid-cta button:hover {
    background: #9d8365;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.services-pricing {
    padding: 5rem 2rem;
    background: var(--white);
}

.services-pricing h2 {
    text-align: center;
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.services-intro {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
}

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    max-width: 400px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.service-card:hover {
    box-shadow: 0 10px 40px var(--shadow);
    transform: translateY(-5px);
}

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

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.service-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
}

.service-card p {
    padding: 0 1.5rem 1rem;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.price-reveal {
    padding: 1rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.select-service {
    margin: 1.5rem;
    width: calc(100% - 3rem);
    background: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
}

.urgency-section {
    background: #fff3e0;
    padding: 3rem 2rem;
    border-left: 5px solid var(--accent-color);
}

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

.urgency-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.urgency-content p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.urgency-highlight {
    font-weight: 700;
    color: var(--accent-color);
}

.form-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

.form-container h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-align: center;
}

.form-subtitle {
    text-align: center;
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.form-group {
    margin-bottom: 1.5rem;
    transition: all 0.3s ease;
}

.form-group.highlight {
    background: #fff9e6;
    padding: 1rem;
    border-radius: 4px;
    border: 2px solid var(--accent-color);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(139, 115, 85, 0.1);
}

.form-submit {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.form-legal {
    margin-top: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
    text-align: center;
    line-height: 1.5;
}

.form-legal a {
    color: var(--accent-color);
    text-decoration: underline;
}

.final-reassurance {
    padding: 5rem 2rem;
    background: var(--white);
}

.final-reassurance h3 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.guarantees {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    flex: 1;
    min-width: 250px;
    text-align: center;
    padding: 2rem;
}

.guarantee-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.guarantee-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.sticky-cta {
    position: fixed;
    bottom: -100px;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2rem;
    z-index: 999;
    box-shadow: 0 -4px 20px var(--shadow);
    transition: bottom 0.4s ease;
}

.sticky-cta.visible {
    bottom: 0;
}

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

.sticky-text {
    font-size: 1.1rem;
    font-weight: 600;
}

.sticky-content button {
    background: var(--accent-color);
    color: var(--white);
    padding: 0.9rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.sticky-content button:hover {
    background: #9d8365;
    transform: translateY(-2px);
}

.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 4rem 2rem 2rem;
}

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

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

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    font-size: 0.95rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
}

.footer-section a {
    display: block;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

.page-header {
    margin-top: 80px;
    padding: 4rem 2rem 3rem;
    text-align: center;
    background: var(--light-bg);
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    letter-spacing: -1px;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
}

.collection-intro {
    padding: 4rem 2rem;
    background: var(--white);
}

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

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

.intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-gray);
}

.services-detailed {
    padding: 2rem;
    background: var(--white);
}

.service-detail {
    max-width: 1200px;
    margin: 0 auto 5rem;
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.service-image-large {
    flex: 1;
    min-width: 300px;
}

.service-image-large img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

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

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

.service-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.service-info h3 {
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    font-weight: 700;
}

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

.features-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.05rem;
    line-height: 1.6;
    color: var(--text-gray);
}

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

.pricing-detail {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

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

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

.btn-select {
    background: var(--primary-color);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-select:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px var(--shadow);
}

.quality-promise {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.quality-promise h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.promise-item {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.promise-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.promise-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.story-section,
.philosophy-section,
.values-section,
.team-section,
.workshop-section,
.impact-section,
.commitment-section {
    padding: 4rem 2rem;
}

.story-section {
    background: var(--white);
}

.story-block {
    max-width: 900px;
    margin: 0 auto 3rem;
}

.story-block h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.story-block p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.image-block {
    max-width: 1200px;
    margin: 0 auto;
}

.image-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

.philosophy-section {
    background: var(--light-bg);
}

.philosophy-content {
    max-width: 1200px;
    margin: 0 auto;
}

.philosophy-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.philosophy-content > p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 3rem;
    color: var(--text-gray);
    text-align: center;
}

.insight-boxes {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.insight-box {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.insight-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--accent-color);
}

.insight-box p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.values-section {
    background: var(--white);
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--light-bg);
    padding: 2.5rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
}

.value-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.value-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.team-section {
    background: var(--light-bg);
}

.team-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.team-member {
    flex: 1;
    min-width: 280px;
    background: var(--white);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.team-member h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-role {
    font-size: 1rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.team-member p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.workshop-section {
    background: var(--white);
    display: flex;
    gap: 4rem;
    align-items: center;
    flex-wrap: wrap;
}

.workshop-content {
    flex: 1;
    min-width: 300px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.workshop-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.workshop-image {
    flex: 1;
    min-width: 300px;
}

.workshop-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
}

.impact-section {
    background: var(--light-bg);
}

.impact-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

.impact-stats {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    min-width: 200px;
    text-align: center;
    padding: 2rem;
    background: var(--white);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--accent-color);
}

.stat-label {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.commitment-section {
    background: var(--white);
}

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

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

.commitment-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-gray);
}

.commitment-list {
    list-style: none;
    margin: 2rem 0;
}

.commitment-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

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

.cta-about {
    padding: 5rem 2rem;
    background: var(--accent-color);
    text-align: center;
    color: var(--white);
}

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

.cta-about p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
}

.cta-about button {
    background: var(--white);
    color: var(--accent-color);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-about button:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.contact-content {
    padding: 3rem 2rem;
}

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

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

.contact-info h2,
.contact-map h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

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

.contact-item h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
    color: var(--accent-color);
}

.contact-item p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.contact-item a {
    color: var(--accent-color);
    font-weight: 600;
}

.contact-item a:hover {
    text-decoration: underline;
}

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

.map-placeholder {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 40px var(--shadow);
}

.map-placeholder img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.9);
    color: var(--white);
    padding: 1.5rem;
}

.map-overlay p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: var(--white);
}

.faq-section {
    padding: 5rem 2rem;
    background: var(--light-bg);
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    font-weight: 700;
}

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

.faq-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

.contact-cta {
    padding: 5rem 2rem;
    background: var(--primary-color);
    text-align: center;
    color: var(--white);
}

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

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.btn-primary {
    display: inline-block;
    background: var(--accent-color);
    color: var(--white);
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: #9d8365;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.thanks-hero {
    padding: 6rem 2rem;
    background: var(--light-bg);
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 900px;
    width: 100%;
    background: var(--white);
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 10px 40px var(--shadow);
    text-align: center;
}

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

.thanks-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.thanks-details {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.thanks-details h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.order-service {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.order-confirmation {
    font-size: 1.05rem;
    color: var(--text-gray);
}

.next-steps {
    text-align: left;
    margin-bottom: 3rem;
}

.next-steps h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-weight: 700;
    text-align: center;
}

.step-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

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

.step-content h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-gray);
}

.thanks-bonus {
    background: #fff9e6;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--accent-color);
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-bonus h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.thanks-bonus p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-gray);
}

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

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
}

.legal-page {
    margin-top: 80px;
    padding: 4rem 2rem;
    background: var(--white);
}

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

.legal-container h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.legal-date {
    font-size: 1rem;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.legal-container h2 {
    font-size: 2rem;
    margin-top: 3rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--primary-color);
}

.legal-container h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.legal-container p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: var(--text-gray);
}

.legal-container ul,
.legal-container ol {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.legal-container li {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    color: var(--text-gray);
}

.legal-container a {
    color: var(--accent-color);
    text-decoration: underline;
}

.legal-container a:hover {
    color: #9d8365;
}

.legal-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.legal-table thead {
    background: var(--light-bg);
}

.legal-table th,
.legal-table td {
    padding: 1rem;
    border: 1px solid var(--border-color);
    text-align: left;
}

.legal-table th {
    font-weight: 700;
    color: var(--primary-color);
}

.legal-table td {
    font-size: 0.95rem;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .story-content h2,
    .centered-content h2,
    .services-pricing h2,
    .page-header h1 {
        font-size: 2rem;
    }

    .split-layout {
        flex-direction: column;
        gap: 2rem;
    }

    .service-detail,
    .service-detail.reverse {
        flex-direction: column;
        gap: 2rem;
    }

    .sticky-content {
        justify-content: center;
        text-align: center;
    }

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

    .thanks-container {
        padding: 2.5rem 1.5rem;
    }

    .thanks-container h1 {
        font-size: 2rem;
    }

    .step-item {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .services-grid {
        gap: 1.5rem;
    }

    .service-card {
        min-width: 100%;
    }

    .form-container {
        padding: 2rem 1.5rem;
    }

    .legal-container h1 {
        font-size: 2rem;
    }

    .legal-table {
        font-size: 0.85rem;
    }

    .legal-table th,
    .legal-table td {
        padding: 0.75rem 0.5rem;
    }
}