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

:root {
    --primary-color: #2c1810;
    --secondary-color: #8b6f47;
    --accent-color: #d4a574;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #faf8f6;
    --bg-white: #ffffff;
    --border-color: #e5e5e5;
}

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

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

.cookie-banner.active {
    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: 250px;
}

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

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

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

.btn-accept:hover {
    background: #e5b685;
    transform: translateY(-1px);
}

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

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

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

.header-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

.main-nav {
    display: flex;
    gap: 32px;
}

.main-nav a {
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

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

.hero-split {
    display: flex;
    min-height: 85vh;
}

.hero-left,
.hero-right {
    width: 50%;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: var(--bg-light);
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 600;
}

.hero-text p {
    font-size: 20px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-right {
    background: #c9b596;
    position: relative;
    overflow: hidden;
}

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

.btn-primary {
    display: inline-block;
    padding: 16px 40px;
    background: var(--primary-color);
    color: var(--bg-white);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

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

.btn-secondary {
    display: inline-block;
    padding: 16px 40px;
    background: transparent;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    border-radius: 4px;
    border: 2px solid var(--primary-color);
    transition: all 0.3s ease;
    font-size: 16px;
}

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

.split-content {
    display: flex;
    min-height: 600px;
}

.split-content.reverse {
    flex-direction: row-reverse;
}

.split-image-left,
.split-image-right,
.split-text-left,
.split-text-right {
    width: 50%;
}

.split-image-left,
.split-image-right {
    background: #d4c4b0;
    overflow: hidden;
}

.split-image-left img,
.split-image-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-text-left,
.split-text-right {
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text-left h2,
.split-text-right h2 {
    font-size: 36px;
    line-height: 1.3;
    color: var(--primary-color);
    margin-bottom: 24px;
    font-weight: 600;
}

.split-text-left p,
.split-text-right p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.insight-block {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 100px 60px;
}

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

.insight-content h2 {
    font-size: 40px;
    margin-bottom: 28px;
    font-weight: 600;
}

.insight-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.95;
}

.ingredient-list {
    margin-top: 32px;
}

.ingredient-item {
    margin-bottom: 16px;
    padding: 16px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.ingredient-item strong {
    color: var(--accent-color);
}

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

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

.trust-container h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.testimonial-grid {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    padding: 40px;
    background: var(--bg-white);
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

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

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

.pricing-header h2 {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.pricing-header p {
    font-size: 18px;
    color: var(--text-light);
}

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

.pricing-card {
    width: calc(33.333% - 22px);
    min-width: 320px;
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-image {
    height: 240px;
    overflow: hidden;
    background: #e5d5c0;
}

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

.pricing-card h3 {
    font-size: 24px;
    color: var(--primary-color);
    margin: 24px 24px 12px;
}

.pricing-card p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    margin: 0 24px 16px;
}

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

.btn-select {
    width: calc(100% - 48px);
    margin: 0 24px 24px;
    padding: 14px;
    background: var(--secondary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: var(--primary-color);
    transform: translateY(-1px);
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-intro h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

#selectedServiceDisplay {
    font-size: 18px;
    color: var(--secondary-color);
    font-weight: 500;
}

.order-form {
    background: var(--bg-white);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary-color);
    color: var(--bg-white);
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover:not(:disabled) {
    background: var(--secondary-color);
    transform: translateY(-1px);
}

.btn-submit:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

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

.scientific-content {
    max-width: 1000px;
    margin: 0 auto;
}

.scientific-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.scientific-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 24px;
}

.references-list {
    margin-top: 24px;
}

.reference-item {
    padding: 16px;
    background: var(--bg-light);
    border-left: 3px solid var(--secondary-color);
    margin-bottom: 12px;
    font-size: 14px;
    line-height: 1.6;
}

.reference-item a {
    color: var(--secondary-color);
    text-decoration: none;
    word-break: break-all;
}

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

.main-footer {
    background: var(--primary-color);
    color: var(--bg-white);
    padding: 60px 40px 20px;
}

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

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 16px;
    color: var(--accent-color);
}

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 8px;
}

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

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

.footer-section ul li a {
    color: var(--bg-white);
    text-decoration: none;
    font-size: 14px;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: var(--accent-color);
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    font-size: 13px;
    line-height: 1.6;
    opacity: 0.9;
}

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

.about-hero,
.services-hero,
.contact-hero,
.thanks-hero {
    padding: 120px 40px 80px;
    text-align: center;
    background: var(--bg-light);
}

.about-hero-content h1,
.services-hero-content h1,
.contact-hero-content h1,
.thanks-content h1 {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.about-hero-content p,
.services-hero-content p,
.contact-hero-content p {
    font-size: 20px;
    color: var(--text-light);
}

.philosophy-block,
.collection-intro {
    padding: 80px 40px;
    background: var(--bg-white);
}

.philosophy-content,
.intro-content {
    max-width: 1000px;
    margin: 0 auto;
}

.philosophy-content h2,
.intro-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 32px;
    text-align: center;
}

.philosophy-content p,
.intro-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 40px;
    text-align: center;
}

.philosophy-grid {
    display: flex;
    gap: 40px;
    margin-top: 48px;
}

.philosophy-item {
    flex: 1;
}

.philosophy-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.philosophy-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
    text-align: left;
}

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

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

.team-content h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.team-content p {
    font-size: 17px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.values-split {
    display: flex;
    padding: 80px 40px;
    background: var(--bg-white);
    gap: 60px;
}

.values-left,
.values-right {
    flex: 1;
}

.values-left h2,
.values-right h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.values-left p,
.values-right p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-about,
.cta-contact {
    padding: 80px 40px;
    background: var(--secondary-color);
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    color: var(--bg-white);
    margin-bottom: 32px;
}

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

.cta-content .btn-primary:hover {
    background: var(--accent-color);
}

.collection-detail {
    display: flex;
    padding: 80px 40px;
    background: var(--bg-white);
    gap: 60px;
    border-bottom: 1px solid var(--border-color);
}

.collection-detail.reverse {
    flex-direction: row-reverse;
    background: var(--bg-light);
}

.detail-image,
.detail-text {
    flex: 1;
}

.detail-image {
    background: #d9cbb8;
    border-radius: 8px;
    overflow: hidden;
}

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

.detail-text h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.price-display {
    font-size: 28px;
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 24px;
}

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

.notes-structure {
    margin: 24px 0;
    padding: 24px;
    background: var(--bg-light);
    border-radius: 4px;
}

.note-layer {
    margin-bottom: 12px;
    font-size: 15px;
    line-height: 1.6;
}

.note-layer:last-child {
    margin-bottom: 0;
}

.note-layer strong {
    color: var(--secondary-color);
}

.collection-set {
    padding: 80px 40px;
    background: var(--bg-light);
}

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

.set-image {
    flex: 1;
    background: #c9b89a;
    border-radius: 8px;
    overflow: hidden;
}

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

.set-details {
    flex: 1;
}

.set-details h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

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

.ingredients-transparency {
    padding: 80px 40px;
    background: var(--bg-white);
}

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

.transparency-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

.transparency-content p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.exclusion-list {
    list-style: none;
    margin: 24px 0;
    padding-left: 0;
}

.exclusion-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 16px;
    line-height: 1.6;
}

.exclusion-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--secondary-color);
    font-weight: bold;
}

.contact-main {
    padding: 80px 40px;
    background: var(--bg-white);
}

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

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 32px;
}

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

.info-block h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    font-weight: 600;
}

.info-block p {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
}

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

.contact-image {
    flex: 1;
    background: #d4c0a8;
    border-radius: 8px;
    overflow: hidden;
}

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

.visit-section,
.faq-section {
    padding: 80px 40px;
    background: var(--bg-light);
}

.visit-content,
.faq-content {
    max-width: 1000px;
    margin: 0 auto;
}

.visit-content h2,
.faq-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 24px;
}

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

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-top: 32px;
}

.faq-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
}

.faq-item h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

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

.thanks-hero {
    padding: 120px 40px;
}

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

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

.thanks-message {
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 32px;
}

.order-summary {
    background: var(--bg-white);
    padding: 32px;
    border-radius: 8px;
    margin: 32px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.order-summary h3 {
    font-size: 20px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.order-detail {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.next-steps {
    margin: 48px 0;
}

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

.steps-grid {
    display: flex;
    gap: 32px;
    justify-content: center;
    text-align: left;
}

.step-item {
    flex: 1;
    max-width: 220px;
    display: flex;
    gap: 16px;
}

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

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

.step-text p {
    font-size: 14px;
    line-height: 1.5;
    color: var(--text-dark);
}

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

.care-tips {
    padding: 80px 40px;
    background: var(--bg-white);
}

.tips-content {
    max-width: 1000px;
    margin: 0 auto;
}

.tips-content h2 {
    font-size: 32px;
    color: var(--primary-color);
    margin-bottom: 40px;
    text-align: center;
}

.tips-grid {
    display: flex;
    gap: 40px;
}

.tip-item {
    flex: 1;
}

.tip-item h3 {
    font-size: 20px;
    color: var(--secondary-color);
    margin-bottom: 12px;
}

.tip-item p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-dark);
}

.legal-page {
    padding: 80px 40px;
    background: var(--bg-white);
}

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

.legal-content h1 {
    font-size: 42px;
    color: var(--primary-color);
    margin-bottom: 16px;
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 40px;
}

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

.legal-section h2 {
    font-size: 24px;
    color: var(--primary-color);
    margin-bottom: 16px;
    margin-top: 32px;
}

.legal-section h3 {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 12px;
    margin-top: 24px;
}

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

.legal-section ul {
    margin: 16px 0;
    padding-left: 32px;
}

.legal-section ul li {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 8px;
}

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

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

.cookie-table {
    margin: 24px 0;
}

.cookie-row {
    padding: 20px;
    background: var(--bg-light);
    border-radius: 4px;
    margin-bottom: 16px;
}

.cookie-name {
    font-size: 16px;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.cookie-desc p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.collections-intro {
    margin-top: 16px;
}

@media (max-width: 1024px) {
    .hero-split,
    .split-content,
    .contact-grid,
    .set-content,
    .values-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .split-image-left,
    .split-image-right,
    .split-text-left,
    .split-text-right,
    .contact-info,
    .contact-image,
    .set-image,
    .set-details,
    .values-left,
    .values-right {
        width: 100%;
    }

    .hero-left,
    .hero-right {
        min-height: 50vh;
    }

    .testimonial-grid,
    .philosophy-grid,
    .tips-grid,
    .steps-grid {
        flex-direction: column;
    }

    .pricing-card {
        width: 100%;
    }

    .header-content {
        flex-wrap: wrap;
        gap: 16px;
    }

    .main-nav {
        order: 3;
        width: 100%;
        justify-content: center;
    }

    .collection-detail {
        flex-direction: column;
    }

    .detail-image {
        min-height: 400px;
    }

    .faq-item {
        flex: 1 1 100%;
    }
}

@media (max-width: 768px) {
    .hero-text h1,
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1,
    .thanks-content h1 {
        font-size: 36px;
    }

    .split-text-left h2,
    .split-text-right h2,
    .philosophy-content h2,
    .team-content h2,
    .detail-text h2 {
        font-size: 28px;
    }

    .insight-content h2,
    .trust-container h2,
    .pricing-header h2 {
        font-size: 32px;
    }

    .hero-left,
    .split-text-left,
    .split-text-right {
        padding: 40px 24px;
    }

    .order-form {
        padding: 32px 24px;
    }

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

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
}