/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

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

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

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

/* Navigation - Split Style */
.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
}

.nav-right {
    display: flex;
    gap: 2rem;
}

.nav-right a {
    font-weight: 500;
    color: #2c3e50;
    position: relative;
}

.nav-right a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e74c3c;
    transition: width 0.3s ease;
}

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

/* Hero Split Section */
.hero-split {
    display: flex;
    min-height: 90vh;
    align-items: stretch;
}

.hero-left {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 5%;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.hero-content {
    max-width: 550px;
}

.hero-label {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: #e74c3c;
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    border-radius: 4px;
}

.hero-split h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-split p {
    font-size: 1.2rem;
    color: #546e7a;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-right {
    flex: 1;
    display: flex;
}

.hero-image {
    width: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* CTA Buttons */
.cta-primary,
.cta-primary-large {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-primary-large {
    padding: 1.3rem 3rem;
    font-size: 1.1rem;
}

.cta-primary:hover,
.cta-primary-large:hover {
    background: #c0392b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.3);
}

.cta-secondary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    color: #e74c3c;
    font-weight: 600;
    border: 2px solid #e74c3c;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #e74c3c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Story Section - Split */
.story-section {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.story-left {
    flex: 0 0 45%;
}

.story-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.story-right {
    flex: 1;
}

.story-right h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.story-right p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

/* Problem Section */
.problem-section {
    padding: 6rem 5%;
    background: #f8f9fa;
}

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

.problem-section h2 {
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.problem-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.problem-card {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: left;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px);
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.problem-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

/* Insight Split Section */
.insight-split {
    display: flex;
    align-items: stretch;
    min-height: 600px;
}

.insight-left {
    flex: 1;
    padding: 5rem;
    background: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.insight-left h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.insight-left p {
    font-size: 1.15rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

.insight-right {
    flex: 1;
    display: flex;
}

.insight-image {
    width: 100%;
    background-size: cover;
    background-position: center;
}

/* Trust Section */
.trust-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #fff9f9 0%, #ffffff 100%);
}

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

.trust-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.testimonials-split {
    display: flex;
    gap: 2rem;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 20px;
    left: 25px;
    font-size: 4rem;
    color: #e74c3c;
    opacity: 0.2;
    font-family: Georgia, serif;
}

.testimonial-card p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.testimonial-author strong {
    color: #2c3e50;
    font-size: 1rem;
}

.testimonial-author span {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Benefits Section */
.benefits-section {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.benefits-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.benefit-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.benefit-icon {
    flex: 0 0 60px;
    width: 60px;
    height: 60px;
    background: #e74c3c;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.8rem;
    font-weight: bold;
}

.benefit-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.benefit-content p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
}

/* Collections Section */
.collections-section {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.collections-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.collections-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.collections-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2.5rem;
    max-width: 1300px;
    margin: 0 auto;
}

.collection-card {
    flex: 1 1 calc(33.333% - 2rem);
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.collection-image {
    width: 100%;
    height: 280px;
    background-size: cover;
    background-position: center;
}

.collection-content {
    padding: 2rem;
}

.collection-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.collection-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.collection-price {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}

/* Urgency Section */
.urgency-section {
    padding: 4rem 5%;
    background: #fff3e0;
}

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

.urgency-left {
    flex: 1;
}

.urgency-left h2 {
    font-size: 2.3rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.urgency-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 1rem;
}

.urgency-right {
    flex: 0 0 250px;
}

.urgency-badge {
    background: #e74c3c;
    color: #ffffff;
    padding: 3rem;
    border-radius: 50%;
    text-align: center;
    width: 220px;
    height: 220px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.urgency-number {
    font-size: 3.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 0.5rem;
}

.urgency-text {
    font-size: 1rem;
    line-height: 1.4;
}

/* Form Section */
.form-section {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.form-split {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
}

.form-left {
    flex: 0 0 40%;
}

.form-left h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.form-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    padding: 0.8rem 0;
    font-size: 1.05rem;
    color: #2c3e50;
}

.form-right {
    flex: 1;
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 12px;
}

.order-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    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: #e74c3c;
}

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

.form-privacy {
    font-size: 0.85rem;
    color: #95a5a6;
    text-align: center;
    margin-top: 1rem;
}

.form-privacy a {
    color: #e74c3c;
    text-decoration: underline;
}

/* Final CTA Section */
.final-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    text-align: center;
}

.final-cta h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Footer */
.footer {
    background: #2c3e50;
    color: #ffffff;
    padding: 4rem 5% 2rem;
}

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

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

.footer-column h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column p {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #bdc3c7;
}

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

.footer-column ul li {
    margin-bottom: 0.7rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #e74c3c;
}

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

.footer-bottom p {
    color: #95a5a6;
    font-size: 0.9rem;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.2);
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
    line-height: 1.6;
}

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

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.8rem 1.8rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.cookie-accept {
    background: #e74c3c;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #c0392b;
}

.cookie-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

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

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    padding: 1.2rem 2.5rem;
    background: #e74c3c;
    color: #ffffff;
    font-weight: 700;
    border-radius: 50px;
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
    z-index: 999;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.sticky-cta:hover {
    background: #c0392b;
    transform: scale(1.05);
}

/* Page Hero (for other pages) */
.page-hero {
    padding: 5rem 5% 4rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    text-align: center;
}

.page-hero h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #546e7a;
}

/* About Page Specific */
.about-story {
    padding: 6rem 5%;
    background: #ffffff;
}

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

.about-left {
    flex: 1;
}

.about-left h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.about-left p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

.about-right {
    flex: 0 0 45%;
}

.about-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.values-section {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.value-card {
    flex: 1 1 calc(50% - 1rem);
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.timeline-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.timeline-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

.timeline {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    position: relative;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 80px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e74c3c;
}

.timeline-item {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
    position: relative;
}

.timeline-year {
    flex: 0 0 120px;
    font-size: 1.5rem;
    font-weight: 700;
    color: #e74c3c;
    position: relative;
}

.timeline-year::after {
    content: '';
    position: absolute;
    right: -28px;
    top: 8px;
    width: 16px;
    height: 16px;
    background: #e74c3c;
    border-radius: 50%;
    border: 3px solid #ffffff;
    box-shadow: 0 0 0 2px #e74c3c;
}

.timeline-content {
    flex: 1;
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 10px;
}

.timeline-content h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.timeline-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.team-section {
    padding: 6rem 5%;
    background: #f8f9fa;
}

.team-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.15rem;
    color: #546e7a;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-grid {
    display: flex;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member {
    flex: 0 1 280px;
    text-align: center;
}

.team-image {
    width: 200px;
    height: 200px;
    background-size: cover;
    background-position: center;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.team-member h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #2c3e50;
}

.team-member p {
    font-size: 1rem;
    color: #546e7a;
}

.mission-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    text-align: center;
}

.mission-content {
    max-width: 800px;
    margin: 0 auto;
}

.mission-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.mission-section p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    opacity: 0.95;
}

/* Services Page */
.services-intro {
    padding: 3rem 5%;
    background: #ffffff;
}

.services-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.services-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1rem;
}

.services-list {
    padding: 3rem 5%;
    background: #f8f9fa;
}

.service-item-split {
    display: flex;
    gap: 4rem;
    max-width: 1400px;
    margin: 0 auto 5rem;
    align-items: center;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.service-item-split.reverse {
    flex-direction: row-reverse;
}

.service-left {
    flex: 0 0 45%;
}

.service-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
}

.service-right {
    flex: 1;
    padding: 3rem;
}

.service-right h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.service-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

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

.service-features li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
    font-size: 1rem;
    color: #2c3e50;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.service-pricing {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 8px;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.price-label {
    font-size: 1rem;
    color: #546e7a;
}

.price-value {
    font-size: 1.3rem;
    font-weight: 700;
    color: #e74c3c;
}

.guarantee-section {
    padding: 6rem 5%;
    background: #ffffff;
}

.guarantee-section h2 {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 3rem;
    color: #2c3e50;
}

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

.guarantee-item {
    flex: 1 1 calc(50% - 1rem);
    background: #f8f9fa;
    padding: 2.5rem;
    border-radius: 10px;
    text-align: center;
}

.guarantee-item h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #e74c3c;
}

.guarantee-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.cta-section {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    text-align: center;
}

.cta-section h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

/* Contact Page */
.contact-section {
    padding: 4rem 5%;
    background: #ffffff;
}

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

.contact-split {
    display: flex;
    gap: 4rem;
}

.contact-left {
    flex: 1;
}

.contact-info-block {
    margin-bottom: 2.5rem;
}

.contact-info-block h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-info-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 0.5rem;
}

.contact-info-block a {
    color: #e74c3c;
    text-decoration: underline;
}

.contact-note {
    font-size: 0.95rem;
    color: #95a5a6;
    font-style: italic;
}

.faq-list {
    list-style: none;
}

.faq-list li {
    margin-bottom: 1.5rem;
}

.faq-list strong {
    display: block;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-right {
    flex: 1;
}

.contact-map {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-map h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.map-placeholder {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #e0e0e0;
}

.map-placeholder p {
    margin-bottom: 1rem;
    line-height: 1.7;
}

.map-placeholder ul {
    list-style: none;
    padding-left: 1rem;
}

.map-placeholder ul li {
    margin-bottom: 0.5rem;
    position: relative;
}

.map-placeholder ul li::before {
    content: '•';
    position: absolute;
    left: -1rem;
    color: #e74c3c;
}

.contact-extra {
    background: #fff5f5;
    padding: 2rem;
    border-radius: 12px;
}

.contact-extra h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.contact-extra ul {
    list-style: none;
}

.contact-extra ul li {
    padding: 0.6rem 0 0.6rem 2rem;
    position: relative;
}

.contact-extra ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.contact-cta {
    padding: 5rem 5%;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #ffffff;
    text-align: center;
}

.contact-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.contact-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Thanks Page */
.thanks-section {
    padding: 6rem 5%;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    min-height: 80vh;
    display: flex;
    align-items: center;
}

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

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 2rem;
}

.thanks-section h1 {
    font-size: 3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-subtitle {
    font-size: 1.3rem;
    color: #546e7a;
    margin-bottom: 3rem;
}

.thanks-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    margin-bottom: 3rem;
    text-align: left;
}

.thanks-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
    text-align: center;
}

.thanks-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.thanks-step {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.step-number {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background: #e74c3c;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #2c3e50;
}

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #546e7a;
}

.thanks-info {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.thanks-info h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-info ul {
    list-style: none;
}

.thanks-info ul li {
    padding: 0.5rem 0 0.5rem 2rem;
    position: relative;
}

.thanks-info ul li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.thanks-selected-service {
    background: #fff5f5;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.thanks-selected-service h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.thanks-selected-service p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #e74c3c;
}

.thanks-actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    margin-bottom: 2rem;
}

.thanks-support {
    font-size: 1rem;
    color: #546e7a;
}

.thanks-support a {
    color: #e74c3c;
    text-decoration: underline;
}

/* Legal Pages */
.legal-content {
    padding: 4rem 5%;
    background: #ffffff;
}

.legal-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.legal-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.legal-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 1.5rem;
}

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

.legal-content li {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 0.8rem;
}

.legal-content a {
    color: #e74c3c;
    text-decoration: underline;
}

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

.cookies-table th,
.cookies-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookies-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookies-table td {
    color: #546e7a;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-split,
    .story-split,
    .about-split,
    .insight-split,
    .form-split,
    .service-item-split,
    .contact-split {
        flex-direction: column;
    }

    .hero-left,
    .hero-right,
    .story-left,
    .story-right,
    .about-left,
    .about-right,
    .insight-left,
    .insight-right,
    .form-left,
    .form-right,
    .service-left,
    .service-right,
    .contact-left,
    .contact-right {
        flex: 1;
    }

    .hero-image,
    .story-image,
    .about-image,
    .insight-image,
    .service-image {
        height: 400px;
    }

    .service-item-split.reverse {
        flex-direction: column;
    }

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

    .collection-card {
        flex: 1 1 calc(50% - 1.5rem);
    }

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

    .urgency-right {
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .nav-split {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-right {
        gap: 1.5rem;
    }

    .hero-split h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem !important;
    }

    .problem-card,
    .value-card,
    .guarantee-item {
        flex: 1 1 100%;
    }

    .collection-card {
        flex: 1 1 100%;
    }

    .benefits-split {
        gap: 2rem;
    }

    .benefit-item {
        flex-direction: column;
        text-align: center;
    }

    .benefit-icon {
        margin: 0 auto;
    }

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

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

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

    .cookie-buttons {
        justify-content: center;
    }

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        padding: 1rem 2rem;
        font-size: 0.85rem;
    }
}

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

    .page-hero h1 {
        font-size: 2.2rem;
    }

    .cta-primary,
    .cta-secondary {
        padding: 0.9rem 2rem;
        font-size: 0.95rem;
    }

    .cta-primary-large {
        padding: 1.1rem 2.5rem;
        font-size: 1rem;
    }

    .nav-right {
        flex-wrap: wrap;
        justify-content: center;
        gap: 1rem;
    }
}
