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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background-color: #fafafa;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

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

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

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5f4e;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.nav-links a:hover {
    color: #2c5f4e;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    background-color: #f8f9fa;
    padding: 6px 12px;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}

.hero-visual {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image-wrap {
    position: relative;
    width: 100%;
    height: 620px;
    background-color: #e8f2ef;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 95, 78, 0.85), rgba(26, 26, 26, 0.7));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    padding: 60px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 24px;
    max-width: 720px;
    letter-spacing: -1px;
}

.hero-overlay p {
    font-size: 22px;
    line-height: 1.5;
    max-width: 600px;
    font-weight: 300;
    opacity: 0.95;
}

.story-intro {
    padding: 100px 24px;
    background-color: #ffffff;
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
}

.narrow-content p {
    font-size: 19px;
    line-height: 1.8;
    margin-bottom: 28px;
    color: #34495e;
}

.narrow-content p a {
    color: #2c5f4e;
    text-decoration: none;
    border-bottom: 1px solid #2c5f4e;
}

.narrow-content p a:hover {
    color: #1e4438;
}

.problem-amplification {
    padding: 80px 24px;
    background-color: #f8f9fa;
}

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

.split-text {
    flex: 1;
}

.split-text h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 28px;
    color: #2c3e50;
    line-height: 1.3;
}

.split-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.split-text p a {
    color: #2c5f4e;
    text-decoration: none;
    border-bottom: 1px solid #2c5f4e;
}

.split-visual {
    flex: 1;
    background-color: #e8f2ef;
}

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

.insight-reveal {
    padding: 120px 24px;
    background-color: #2c5f4e;
    color: #ffffff;
}

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

.centered-insight h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 36px;
    line-height: 1.2;
}

.centered-insight p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 24px;
    opacity: 0.95;
}

.trust-building {
    padding: 100px 24px;
    background-color: #ffffff;
}

.trust-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.trust-point {
    flex: 1;
    min-width: 280px;
}

.trust-point h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c5f4e;
}

.trust-point p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.testimonial-inline {
    padding: 80px 24px;
    background-color: #f0f7f4;
}

.testimonial-card {
    max-width: 900px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 48px 56px;
    border-left: 4px solid #2c5f4e;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

.testimonial-card p {
    font-size: 21px;
    line-height: 1.7;
    color: #2c3e50;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-card cite {
    font-size: 16px;
    color: #7f8c8d;
    font-style: normal;
}

.benefits-reveal {
    padding: 100px 24px;
    background-color: #ffffff;
}

.benefits-wrapper {
    max-width: 1200px;
    margin: 0 auto;
}

.benefits-wrapper h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 64px;
    text-align: center;
    color: #2c3e50;
}

.benefits-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.benefit-item {
    display: flex;
    gap: 48px;
    align-items: center;
}

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

.benefit-image {
    flex: 1;
    background-color: #e8f2ef;
}

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

.benefit-text {
    flex: 1;
}

.benefit-text h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c5f4e;
}

.benefit-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.benefit-text p a {
    color: #2c5f4e;
    text-decoration: none;
    border-bottom: 1px solid #2c5f4e;
}

.collection-preview {
    padding: 100px 24px;
    background-color: #f8f9fa;
}

.collection-intro {
    max-width: 800px;
    margin: 0 auto 64px;
    text-align: center;
}

.collection-intro h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.collection-intro p {
    font-size: 19px;
    color: #34495e;
    line-height: 1.7;
}

.collection-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.collection-card {
    background-color: #ffffff;
    width: 380px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 260px;
    background-color: #e8f2ef;
}

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

.collection-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 24px 24px 12px;
    color: #2c3e50;
}

.collection-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #34495e;
    margin: 0 24px 16px;
}

.collection-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #2c5f4e;
    margin: 16px 24px;
}

.collection-card .select-service {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px 0;
    background-color: #2c5f4e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.collection-card .select-service:hover {
    background-color: #1e4438;
}

.order-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

.order-wrapper {
    max-width: 640px;
    margin: 0 auto;
}

.order-wrapper h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #2c3e50;
}

.order-form {
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

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

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

.form-group input {
    width: 100%;
    padding: 14px 16px;
    font-size: 16px;
    border: 1px solid #d0d0d0;
    border-radius: 4px;
    background-color: #ffffff;
    color: #2c3e50;
    transition: border-color 0.3s ease;
}

.form-group input:focus {
    outline: none;
    border-color: #2c5f4e;
}

.form-group input[readonly] {
    background-color: #e8f2ef;
    font-weight: 600;
    color: #2c5f4e;
}

.submit-btn {
    width: 100%;
    padding: 16px 0;
    background-color: #2c5f4e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.main-footer {
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 80px 24px 24px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto 48px;
    display: flex;
    gap: 80px;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #b0b0b0;
}

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

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

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

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-section ol {
    list-style: decimal;
    padding-left: 20px;
}

.footer-section ol li {
    margin-bottom: 8px;
    font-size: 13px;
    line-height: 1.6;
}

.footer-section ol li a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ol li a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: #2a2a2a;
    border-radius: 4px;
    border-left: 4px solid #f39c12;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #b0b0b0;
}

.footer-disclaimer strong {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #333333;
}

.footer-bottom p {
    font-size: 13px;
    color: #7f8c8d;
}

.about-hero {
    padding: 100px 24px 80px;
    background-color: #f8f9fa;
}

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

.about-hero-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c3e50;
    line-height: 1.2;
}

.about-hero-content p {
    font-size: 22px;
    color: #34495e;
    line-height: 1.6;
}

.about-story {
    padding: 80px 24px;
    background-color: #ffffff;
}

.story-block {
    max-width: 1200px;
    margin: 0 auto 100px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.story-block.reverse {
    flex-direction: row-reverse;
}

.story-text {
    flex: 1;
}

.story-text h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c5f4e;
}

.story-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    color: #34495e;
}

.story-image {
    flex: 1;
    background-color: #e8f2ef;
}

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

.values-section {
    padding: 100px 24px;
    background-color: #f0f7f4;
}

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

.values-content h2 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 56px;
    text-align: center;
    color: #2c3e50;
}

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

.value-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c5f4e;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
}

.team-section {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.team-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 24px;
    color: #2c3e50;
}

.team-content p {
    font-size: 19px;
    line-height: 1.7;
    color: #34495e;
}

.services-header {
    padding: 100px 24px 60px;
    background-color: #f8f9fa;
}

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

.services-header-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c3e50;
}

.services-header-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
}

.services-detailed {
    padding: 80px 24px;
    background-color: #ffffff;
}

.service-detail-card {
    max-width: 1200px;
    margin: 0 auto 80px;
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

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

.service-detail-image {
    flex: 1;
    background-color: #e8f2ef;
}

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

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

.service-detail-content h2 {
    font-size: 34px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5f4e;
    margin-bottom: 24px;
    display: block;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 24px;
    color: #34495e;
}

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

.service-features li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    padding-left: 24px;
    position: relative;
    margin-bottom: 10px;
}

.service-features li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2c5f4e;
    font-size: 20px;
}

.service-detail-content .select-service {
    padding: 14px 32px;
    background-color: #2c5f4e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-detail-content .select-service:hover {
    background-color: #1e4438;
}

.contact-header {
    padding: 100px 24px 60px;
    background-color: #f8f9fa;
}

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

.contact-header-content h1 {
    font-size: 52px;
    font-weight: 800;
    margin-bottom: 20px;
    color: #2c3e50;
}

.contact-header-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #34495e;
}

.contact-details {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

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

.contact-info-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c5f4e;
}

.contact-info-block p {
    font-size: 17px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 12px;
}

.email-display {
    font-weight: 600;
    color: #2c5f4e;
}

.visit-info {
    padding: 80px 24px;
    background-color: #f8f9fa;
}

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

.visit-content h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
    color: #2c3e50;
}

.visit-details {
    display: flex;
    gap: 48px;
    flex-wrap: wrap;
}

.visit-item {
    flex: 1;
    min-width: 280px;
}

.visit-item h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c5f4e;
}

.visit-item p {
    font-size: 17px;
    line-height: 1.7;
    color: #34495e;
}

.map-placeholder {
    padding: 60px 24px;
    background-color: #ffffff;
}

.map-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 80px 40px;
    background-color: #e8f2ef;
    border-radius: 8px;
}

.map-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #2c5f4e;
    font-weight: 500;
}

.thanks-section {
    padding: 120px 24px;
    background-color: #f8f9fa;
}

.thanks-content {
    max-width: 800px;
    margin: 0 auto;
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.thanks-content h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c5f4e;
}

.thanks-content > p {
    font-size: 20px;
    margin-bottom: 40px;
    color: #34495e;
}

.confirmation-details {
    background-color: #f0f7f4;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.confirmation-details p {
    font-size: 17px;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 16px;
}

.confirmation-details p:last-child {
    margin-bottom: 0;
}

.next-steps {
    text-align: left;
    margin-bottom: 40px;
}

.next-steps h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #2c3e50;
}

.next-steps ul {
    list-style: none;
    padding-left: 0;
}

.next-steps ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.next-steps ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f4e;
    font-weight: 700;
}

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: #2c5f4e;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: transparent;
    color: #2c5f4e;
    border: 2px solid #2c5f4e;
}

.btn-secondary:hover {
    background-color: #f0f7f4;
}

.legal-content {
    padding: 80px 24px;
    background-color: #ffffff;
}

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

.legal-wrapper h1 {
    font-size: 44px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-date {
    font-size: 14px;
    color: #7f8c8d;
    margin-bottom: 40px;
}

.legal-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #2c5f4e;
}

.legal-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-wrapper p {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 20px;
}

.legal-wrapper ul,
.legal-wrapper ol {
    margin-bottom: 24px;
    padding-left: 28px;
}

.legal-wrapper ul li,
.legal-wrapper ol li {
    font-size: 16px;
    line-height: 1.8;
    color: #34495e;
    margin-bottom: 12px;
}

.legal-wrapper a {
    color: #2c5f4e;
    text-decoration: none;
    border-bottom: 1px solid #2c5f4e;
}

.legal-wrapper a:hover {
    color: #1e4438;
}

.legal-wrapper strong {
    font-weight: 700;
    color: #2c3e50;
}

.references {
    font-size: 13px;
}

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
        font-size: 14px;
    }

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

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

    .split-layout,
    .story-block,
    .service-detail-card,
    .benefit-item {
        flex-direction: column;
    }

    .collection-card {
        width: 100%;
    }

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

    .thanks-content {
        padding: 40px 24px;
    }
}
