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

:root {
    --primary-color: #2c2c2c;
    --secondary-color: #8b7355;
    --accent-color: #d4a574;
    --light-bg: #f9f7f4;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-gray: #666666;
    --border-light: #e5e5e5;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--white);
}

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

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

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

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

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

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

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

.nav-links a {
    color: var(--text-dark);
    font-size: 15px;
    font-weight: 400;
    position: relative;
}

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

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

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

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: var(--primary-color);
}

.hero-visual {
    margin-top: 80px;
    position: relative;
    height: 90vh;
    min-height: 600px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.hero-bg {
    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.2), rgba(0, 0, 0, 0.5));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px 20px;
}

.hero-title {
    font-size: 58px;
    font-weight: 300;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 20px;
    color: var(--white);
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-hero {
    display: inline-block;
    padding: 18px 45px;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 500;
    font-size: 16px;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background: var(--secondary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.story-intro {
    padding: 100px 20px;
    background: var(--light-bg);
    text-align: center;
}

.story-intro h2 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 30px;
    color: var(--primary-color);
}

.lead-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-gray);
    font-weight: 300;
}

.visual-block {
    padding: 0;
}

.split-visual {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.visual-image {
    flex: 1;
    overflow: hidden;
}

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

.visual-text {
    flex: 1;
    padding: 80px 60px;
    background: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.visual-text h3 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.visual-text p {
    font-size: 17px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-gray);
}

.insight-reveal {
    padding: 120px 20px;
    background: var(--primary-color);
    color: var(--white);
}

.insight-content {
    text-align: center;
}

.insight-label {
    display: inline-block;
    font-size: 13px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
    color: var(--accent-color);
}

.insight-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 30px;
    line-height: 1.3;
}

.insight-content p {
    font-size: 18px;
    line-height: 1.8;
    max-width: 700px;
    margin: 0 auto 20px;
    opacity: 0.9;
}

.testimonial-inline {
    padding: 80px 20px;
    background: var(--light-bg);
}

.testimonial-card {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-text {
    font-size: 24px;
    font-style: italic;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.testimonial-author {
    font-size: 16px;
    color: var(--text-gray);
}

.collection-preview {
    padding: 100px 20px;
}

.section-title-center {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.collection-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.collection-item {
    flex: 0 0 calc(33.333% - 30px);
    max-width: 380px;
}

.collection-image {
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 3/4;
}

.collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.collection-item:hover .collection-image img {
    transform: scale(1.05);
}

.collection-info h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.collection-info p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.link-cta {
    font-size: 15px;
    color: var(--secondary-color);
    font-weight: 500;
}

.link-cta:hover {
    color: var(--primary-color);
}

.trust-build {
    padding: 100px 20px;
    background: var(--light-bg);
}

.trust-build h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 60px;
    color: var(--primary-color);
}

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

.trust-item {
    flex: 0 0 calc(50% - 20px);
    max-width: 360px;
    text-align: left;
}

.trust-icon {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    border-radius: 50%;
}

.trust-item h4 {
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.social-proof {
    padding: 100px 20px;
}

.social-proof h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonials-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.testimonial-box {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 350px;
    padding: 35px;
    background: var(--light-bg);
    border-left: 3px solid var(--secondary-color);
}

.testimonial-box p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--text-dark);
}

.testimonial-box span {
    font-size: 14px;
    color: var(--text-gray);
    font-weight: 500;
}

.pricing-reveal {
    padding: 100px 20px;
    background: var(--white);
}

.pricing-reveal h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 60px;
}

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

.price-card {
    flex: 0 0 calc(50% - 15px);
    max-width: 480px;
    padding: 40px;
    border: 1px solid var(--border-light);
    background: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

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

.badge-popular {
    position: absolute;
    top: -15px;
    right: 30px;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 18px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.price-card h3 {
    font-size: 24px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.price-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 25px;
}

.price-amount {
    font-size: 36px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 25px;
}

.price-features {
    list-style: none;
    margin-bottom: 0;
}

.price-features li {
    padding: 10px 0;
    font-size: 15px;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border-light);
}

.price-features li:last-child {
    border-bottom: none;
}

.price-features li::before {
    content: '✓ ';
    color: var(--secondary-color);
    font-weight: 600;
    margin-right: 8px;
}

.urgency-block {
    padding: 60px 20px;
    background: var(--accent-color);
}

.urgency-content {
    text-align: center;
}

.urgency-text {
    font-size: 20px;
    color: var(--white);
    font-weight: 500;
}

.form-section {
    padding: 100px 20px;
    background: var(--light-bg);
}

.form-section h2 {
    text-align: center;
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.form-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

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

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

.form-group label {
    display: block;
    font-size: 15px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-size: 16px;
    border: 1px solid var(--border-light);
    background: var(--white);
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.form-group textarea {
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    background: var(--primary-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.final-cta {
    padding: 120px 20px;
    background: var(--primary-color);
}

.final-cta-content {
    text-align: center;
    color: var(--white);
}

.final-cta-content h2 {
    font-size: 48px;
    font-weight: 300;
    margin-bottom: 20px;
}

.final-cta-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
}

.btn-final {
    display: inline-block;
    padding: 18px 50px;
    background: var(--white);
    color: var(--primary-color);
    font-weight: 600;
    font-size: 16px;
    border-radius: 2px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-final:hover {
    background: var(--accent-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: space-between;
    margin-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

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

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

.footer-col ul li a {
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.7;
}

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    padding: 18px 20px;
    text-align: center;
    z-index: 999;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-btn {
    color: var(--white);
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sticky-btn:hover {
    opacity: 0.9;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--primary-color);
    color: var(--white);
    padding: 20px;
    z-index: 10000;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.2);
    display: none;
}

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

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

.cookie-content p {
    font-size: 14px;
    margin: 0;
}

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

.btn-cookie,
.btn-cookie-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

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

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

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

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

.page-hero-small {
    margin-top: 80px;
    padding: 80px 20px;
    background: var(--light-bg);
    text-align: center;
}

.page-hero-small h1 {
    font-size: 48px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.subtitle {
    font-size: 20px;
    color: var(--text-gray);
    font-weight: 300;
}

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

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

.about-block h2 {
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-block p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.about-image-full {
    margin: 60px 0;
    overflow: hidden;
}

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

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

.value-item {
    flex: 0 0 calc(50% - 15px);
    padding: 30px;
    background: var(--light-bg);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.cta-inline-block {
    margin-top: 60px;
    text-align: center;
    padding: 50px;
    background: var(--light-bg);
}

.cta-text {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

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

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

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

.service-detail-content {
    flex: 1;
    position: relative;
}

.badge-service {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 6px 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
}

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.service-description {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.service-detail-content h3 {
    font-size: 20px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.service-includes {
    list-style: none;
    margin-bottom: 30px;
}

.service-includes li {
    padding: 8px 0;
    font-size: 16px;
    color: var(--text-gray);
}

.service-includes li::before {
    content: '✓ ';
    color: var(--secondary-color);
    font-weight: 600;
    margin-right: 10px;
}

.service-price-box {
    display: flex;
    align-items: baseline;
    gap: 15px;
    margin-bottom: 25px;
}

.price-label {
    font-size: 16px;
    color: var(--text-gray);
}

.price-value {
    font-size: 32px;
    font-weight: 600;
    color: var(--secondary-color);
}

.btn-service {
    display: inline-block;
    padding: 15px 35px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-service:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

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

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

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

.services-cta h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.services-cta p {
    text-align: center;
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 30px;
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--primary-color);
    color: var(--white);
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.services-cta {
    text-align: center;
}

.contact-page {
    padding: 80px 20px;
}

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

.contact-info-side {
    flex: 1;
}

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

.contact-block h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.contact-block p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.contact-block a {
    color: var(--secondary-color);
}

.contact-block a:hover {
    color: var(--primary-color);
}

.small-text {
    font-size: 14px;
    font-style: italic;
    margin-top: 8px;
}

.contact-map-side {
    flex: 1;
}

.map-placeholder {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    margin-bottom: 30px;
}

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

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 20px;
    color: var(--white);
}

.contact-cta-box {
    padding: 30px;
    background: var(--light-bg);
}

.contact-cta-box h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-cta-box p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.contact-faq {
    padding: 80px 20px;
    background: var(--light-bg);
}

.contact-faq h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 400;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.faq-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid var(--border-light);
}

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

.faq-item h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.faq-item p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-gray);
}

.thanks-hero {
    margin-top: 80px;
    padding: 100px 20px;
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: var(--light-bg);
}

.thanks-content {
    text-align: center;
}

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

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 40px;
}

.thanks-service-info {
    background: var(--white);
    padding: 25px;
    margin: 40px 0;
    border-left: 4px solid var(--secondary-color);
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 40px;
    color: var(--primary-color);
}

.steps-grid {
    display: flex;
    gap: 30px;
    justify-content: center;
    margin-bottom: 40px;
}

.step-item {
    flex: 0 0 calc(33.333% - 20px);
    max-width: 250px;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--secondary-color);
    color: var(--white);
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.step-item p {
    font-size: 15px;
    color: var(--text-gray);
}

.thanks-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 40px;
}

.thanks-contact-box {
    background: var(--white);
    padding: 25px;
    margin-top: 40px;
}

.thanks-contact-box p {
    font-size: 16px;
    color: var(--text-gray);
    margin: 0;
}

.thanks-contact-box a {
    color: var(--secondary-color);
    font-weight: 600;
}

.legal-page {
    margin-top: 80px;
    padding: 80px 20px;
}

.legal-page h1 {
    font-size: 42px;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.legal-intro {
    font-size: 16px;
    color: var(--text-gray);
    margin-bottom: 50px;
}

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

.legal-section h2 {
    font-size: 28px;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.legal-section h3 {
    font-size: 22px;
    font-weight: 600;
    margin: 25px 0 15px;
    color: var(--primary-color);
}

.legal-section h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 20px 0 12px;
    color: var(--primary-color);
}

.legal-section p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.legal-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.legal-section ul li {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 10px;
}

.legal-section a {
    color: var(--secondary-color);
    text-decoration: underline;
}

.legal-section a:hover {
    color: var(--primary-color);
}

.cookie-table {
    overflow-x: auto;
    margin: 30px 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid var(--border-light);
}

.cookie-table th {
    background: var(--light-bg);
    font-weight: 600;
    color: var(--primary-color);
}

.cookie-table td {
    font-size: 15px;
    color: var(--text-gray);
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-toggle {
        display: block;
    }

    .hero-title {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 18px;
    }

    .story-intro h2 {
        font-size: 32px;
    }

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

    .visual-text {
        padding: 40px 30px;
    }

    .insight-content h2 {
        font-size: 32px;
    }

    .section-title-center {
        font-size: 32px;
    }

    .collection-item {
        flex: 0 0 100%;
    }

    .trust-item {
        flex: 0 0 100%;
    }

    .testimonial-box {
        flex: 0 0 100%;
    }

    .price-card {
        flex: 0 0 100%;
    }

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

    .value-item {
        flex: 0 0 100%;
    }

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

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

    .steps-grid {
        flex-direction: column;
        align-items: center;
    }

    .step-item {
        flex: 0 0 100%;
    }

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