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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

.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;
    margin: 0;
    min-width: 300px;
}

.cookie-content a {
    color: #3498db;
    text-decoration: underline;
}

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

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

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

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

.btn-reject {
    background-color: #e74c3c;
    color: white;
}

.btn-reject:hover {
    background-color: #c0392b;
}

.nav-floating {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 16px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c3e50;
}

.ad-disclosure {
    font-size: 12px;
    color: #7f8c8d;
    font-style: italic;
    padding: 4px 12px;
    background-color: #ecf0f1;
    border-radius: 4px;
}

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

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

.nav-links a:hover {
    color: #3498db;
}

.hero-asymmetric {
    min-height: 85vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    background-color: #f8f9fa;
}

.hero-content-offset {
    position: relative;
    z-index: 2;
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 32px;
    width: 100%;
}

.hero-text-block {
    max-width: 540px;
    margin-left: 8%;
    background-color: rgba(255, 255, 255, 0.95);
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.hero-text-block h1 {
    font-size: 48px;
    line-height: 1.2;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-text-block p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
}

.hero-image-overlap {
    position: absolute;
    right: 0;
    top: 15%;
    width: 55%;
    height: 70%;
    border-radius: 12px 0 0 12px;
    overflow: hidden;
    box-shadow: -8px 8px 32px rgba(0,0,0,0.18);
}

.hero-image-overlap img {
    width: 100%;
    height: 100%;
}

.cta-hero {
    background-color: #e67e22;
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-hero:hover {
    background-color: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.3);
}

.story-section {
    padding: 120px 32px;
    background-color: #ffffff;
}

.story-narrow {
    max-width: 720px;
    margin: 0 auto 0 12%;
}

.story-narrow h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

.story-narrow p {
    font-size: 18px;
    color: #555;
    margin-bottom: 24px;
    line-height: 1.8;
}

.story-narrow img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 40px 0;
}

.story-narrow a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.story-narrow a:hover {
    text-decoration: underline;
}

.problem-amplification {
    padding: 100px 32px;
    background-color: #f8f9fa;
}

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

.problem-card {
    background-color: white;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
    max-width: 560px;
}

.left-offset {
    margin-left: 5%;
}

.right-offset {
    margin-left: auto;
    margin-right: 8%;
}

.problem-card h3 {
    font-size: 28px;
    color: #e74c3c;
    margin-bottom: 20px;
    font-weight: 700;
}

.problem-card p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.insight-section {
    padding: 120px 32px;
    background-color: #ffffff;
}

.insight-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: center;
}

.insight-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.insight-text {
    flex: 1;
}

.insight-text h2 {
    font-size: 38px;
    color: #2c3e50;
    margin-bottom: 28px;
    font-weight: 700;
}

.insight-text p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.inline-cta {
    display: inline-block;
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    padding: 12px 24px;
    border: 2px solid #3498db;
    border-radius: 6px;
    margin-top: 16px;
    transition: all 0.3s ease;
}

.inline-cta:hover {
    background-color: #3498db;
    color: white;
}

.trust-building {
    padding: 100px 32px;
    background-color: #ecf0f1;
}

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

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

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

.trust-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: white;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.trust-card h4 {
    font-size: 22px;
    color: #27ae60;
    margin-bottom: 16px;
    font-weight: 600;
}

.trust-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.testimonials-inline {
    padding: 100px 32px;
    background-color: #ffffff;
}

.testimonial-flow {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 48px;
}

.testimonial {
    padding: 36px;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
    border-radius: 6px;
}

.testimonial:nth-child(2) {
    margin-left: 10%;
}

.testimonial:nth-child(3) {
    margin-right: 10%;
}

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

.testimonial-author {
    font-size: 15px;
    color: #7f8c8d;
    font-weight: 600;
}

.services-reveal {
    padding: 120px 32px;
    background-color: #f8f9fa;
}

.services-container {
    max-width: 1400px;
    margin: 0 auto;
}

.services-container h2 {
    font-size: 42px;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 80px;
    font-weight: 700;
}

.services-asymmetric {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.service-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 24px rgba(0,0,0,0.1);
    max-width: 700px;
}

.offset-1 { margin-left: 3%; }
.offset-2 { margin-left: auto; margin-right: 6%; }
.offset-3 { margin-left: 9%; }
.offset-4 { margin-left: auto; margin-right: 3%; }
.offset-5 { margin-left: 6%; }

.service-card img {
    width: 100%;
    height: 320px;
}

.service-card h3 {
    font-size: 26px;
    color: #2c3e50;
    margin: 28px 32px 16px;
    font-weight: 700;
}

.service-card p {
    font-size: 16px;
    color: #555;
    margin: 0 32px 16px;
    line-height: 1.7;
}

.service-card .price {
    font-size: 32px;
    color: #e67e22;
    font-weight: 700;
    margin: 24px 32px 20px;
}

.btn-select {
    background-color: #3498db;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    margin: 0 32px 32px;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.form-section {
    padding: 120px 32px;
    background-color: #ffffff;
}

.form-container {
    max-width: 640px;
    margin: 0 auto 0 15%;
    background-color: #f8f9fa;
    padding: 48px;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 16px;
    font-weight: 700;
}

.form-container > p {
    font-size: 16px;
    color: #555;
    margin-bottom: 32px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    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: #3498db;
}

.btn-submit {
    background-color: #27ae60;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background-color: #229954;
    transform: translateY(-2px);
}

.ingredients-section {
    padding: 100px 32px;
    background-color: #ecf0f1;
}

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

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

.ingredients-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
    margin-bottom: 40px;
}

.ingredient-item {
    flex: 1;
    min-width: 240px;
    max-width: 300px;
    background-color: white;
    padding: 28px;
    border-radius: 6px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

.ingredient-item h4 {
    font-size: 20px;
    color: #27ae60;
    margin-bottom: 12px;
    font-weight: 600;
}

.ingredient-item p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

.ingredients-note {
    font-size: 15px;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.7;
}

.ingredients-note a {
    color: #3498db;
    text-decoration: none;
    font-weight: 600;
}

.ingredients-note a:hover {
    text-decoration: underline;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 60px 32px 20px;
}

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

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

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

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

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 28px;
    background-color: rgba(236, 240, 241, 0.1);
    border-radius: 6px;
    border-left: 4px solid #e74c3c;
}

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

.footer-references {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 28px;
    background-color: rgba(236, 240, 241, 0.05);
    border-radius: 6px;
}

.footer-references h4 {
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 16px;
    font-weight: 600;
}

.footer-references ol {
    margin-left: 20px;
}

.footer-references ol li {
    font-size: 13px;
    color: #bdc3c7;
    margin-bottom: 8px;
    line-height: 1.6;
}

.footer-references ol li a {
    color: #3498db;
    text-decoration: none;
}

.footer-references ol li a:hover {
    text-decoration: underline;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 20px;
    border-top: 1px solid rgba(189, 195, 199, 0.2);
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: #95a5a6;
}

.page-hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 32px;
    text-align: center;
}

.page-hero-content h1 {
    font-size: 48px;
    color: white;
    margin-bottom: 16px;
    font-weight: 700;
}

.page-hero-content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.about-story {
    padding: 100px 32px;
    background-color: #ffffff;
}

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

.about-text-block {
    flex: 1;
}

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

.about-text-block p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-image-block {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

.mission-section {
    padding: 100px 32px;
    background-color: #f8f9fa;
}

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

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

.mission-wrapper > p {
    font-size: 18px;
    color: #555;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    max-width: 360px;
    background-color: white;
    padding: 36px;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 24px;
    color: #3498db;
    margin-bottom: 16px;
    font-weight: 600;
}

.value-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
}

.team-section {
    padding: 100px 32px;
    background-color: #ffffff;
}

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

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

.team-container p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.commitment-section {
    padding: 100px 32px;
    background-color: #ecf0f1;
}

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

.commitment-wrapper h2 {
    font-size: 36px;
    color: #2c3e50;
    margin-bottom: 24px;
    font-weight: 700;
}

.commitment-wrapper p {
    font-size: 17px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.8;
}

.services-full {
    padding: 80px 32px;
    background-color: #ffffff;
}

.services-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 80px;
}

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

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

.service-detail-image {
    flex: 1;
    border-radius: 8px;
    overflow: hidden;
}

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

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

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

.service-detail-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    color: #e67e22;
    font-weight: 700;
    margin: 24px 0;
}

.btn-service-action {
    background-color: #3498db;
    color: white;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-service-action:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.service-note {
    padding: 60px 32px;
    background-color: #f8f9fa;
}

.service-note-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 28px;
    background-color: white;
    border-radius: 6px;
    border-left: 4px solid #e67e22;
}

.service-note-content p {
    font-size: 15px;
    color: #555;
    line-height: 1.7;
}

.contact-info {
    padding: 80px 32px;
    background-color: #ffffff;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    gap: 60px;
    flex-wrap: wrap;
}

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

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

.contact-block p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.contact-cta {
    padding: 80px 32px;
    background-color: #f8f9fa;
}

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

.contact-cta-content h2 {
    font-size: 32px;
    color: #2c3e50;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-cta-content p {
    font-size: 17px;
    color: #555;
    margin-bottom: 32px;
}

.btn-cta-contact {
    background-color: #3498db;
    color: white;
    padding: 16px 40px;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-cta-contact:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.thanks-section {
    padding: 120px 32px;
    background-color: #ffffff;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-container {
    max-width: 700px;
    text-align: center;
    background-color: #f8f9fa;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}

.thanks-container h1 {
    font-size: 40px;
    color: #27ae60;
    margin-bottom: 24px;
    font-weight: 700;
}

.thanks-container p {
    font-size: 18px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.7;
}

#serviceConfirmation {
    font-weight: 600;
    color: #2c3e50;
    font-size: 19px;
}

.btn-back-home {
    background-color: #3498db;
    color: white;
    padding: 16px 36px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 24px;
    transition: all 0.3s ease;
}

.btn-back-home:hover {
    background-color: #2980b9;
    transform: translateY(-2px);
}

.legal-page {
    padding: 80px 32px;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 40px;
    color: #2c3e50;
    margin-bottom: 32px;
    font-weight: 700;
}

.legal-container h2 {
    font-size: 28px;
    color: #2c3e50;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.legal-container h3 {
    font-size: 22px;
    color: #34495e;
    margin-top: 28px;
    margin-bottom: 16px;
    font-weight: 600;
}

.legal-container p {
    font-size: 16px;
    color: #555;
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-container ul,
.legal-container ol {
    margin-left: 32px;
    margin-bottom: 20px;
}

.legal-container ul li,
.legal-container ol li {
    font-size: 16px;
    color: #555;
    margin-bottom: 10px;
    line-height: 1.7;
}

.legal-container a {
    color: #3498db;
    text-decoration: none;
}

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

@media (max-width: 1024px) {
    .hero-asymmetric {
        flex-direction: column;
        min-height: auto;
    }

    .hero-text-block {
        margin-left: 0;
    }

    .hero-image-overlap {
        position: relative;
        width: 100%;
        height: 400px;
        top: 0;
        border-radius: 12px;
    }

    .insight-container,
    .about-container,
    .service-detail {
        flex-direction: column;
    }

    .form-container {
        margin: 0 auto;
    }

    .story-narrow {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }

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

    .services-asymmetric .service-card {
        margin-left: 0 !important;
        margin-right: 0 !important;
        max-width: 100%;
    }

    .trust-cards,
    .values-grid {
        flex-direction: column;
    }

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