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

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: #1a1a1a;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    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: 300px;
    margin: 0;
}

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

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

.btn-accept {
    background: #4CAF50;
    color: white;
}

.btn-accept:hover {
    background: #45a049;
}

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

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

.header-floating {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
}

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

.nav-minimal a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-minimal a:hover {
    color: #4CAF50;
}

.ad-label {
    font-size: 12px;
    color: #666;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

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

.hero-image-container {
    width: 100%;
    height: 100%;
    position: relative;
    background-color: #2c3e50;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.5));
    color: white;
    padding: 40px;
}

.hero-overlay h1 {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 20px;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.3);
}

.hero-overlay p {
    font-size: 24px;
    font-weight: 300;
    max-width: 700px;
    text-shadow: 1px 1px 10px rgba(0, 0, 0, 0.3);
}

.story-intro {
    padding: 100px 40px;
    background: #f8f9fa;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 20px;
    line-height: 1.8;
    color: #2c3e50;
}

.story-content p {
    margin-bottom: 24px;
}

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

.split-image {
    flex: 1;
    background-color: #34495e;
}

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

.split-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #ffffff;
}

.split-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.split-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.reference {
    color: #4CAF50;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.reference:hover {
    color: #45a049;
    text-decoration: underline;
}

.insight-block {
    padding: 100px 40px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

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

.insight-inner h2 {
    font-size: 42px;
    margin-bottom: 32px;
}

.insight-inner p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
}

.insight-inner .reference {
    color: #ffffff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.insight-inner .reference:hover {
    border-bottom-color: #ffffff;
}

.testimonial-visual {
    display: flex;
    align-items: center;
    min-height: 500px;
    background: #1a1a1a;
}

.testimonial-image {
    flex: 1.2;
    background-color: #2c3e50;
}

.testimonial-image img {
    width: 100%;
    height: 100%;
    min-height: 500px;
    object-fit: cover;
}

.testimonial-text {
    flex: 0.8;
    padding: 60px;
    color: white;
}

.testimonial-text p {
    font-size: 28px;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 20px;
}

.testimonial-text cite {
    font-size: 16px;
    font-style: normal;
    opacity: 0.8;
}

.benefits-grid {
    padding: 100px 40px;
    background: #ffffff;
}

.benefits-grid h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.benefit-card {
    flex: 1;
    min-width: 280px;
    padding: 40px;
    background: #f8f9fa;
    border-left: 4px solid #4CAF50;
}

.benefit-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.benefit-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a4a;
}

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

.collection-header {
    text-align: center;
    margin-bottom: 60px;
}

.collection-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.collection-header p {
    font-size: 20px;
    color: #666;
}

.collection-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.collection-item {
    flex: 1;
    min-width: 300px;
    cursor: pointer;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #ffffff;
}

.collection-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.collection-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #34495e;
}

.collection-info {
    padding: 24px;
}

.collection-info h3 {
    font-size: 24px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

.collection-info p {
    font-size: 16px;
    color: #666;
    margin-bottom: 12px;
}

.price {
    display: inline-block;
    font-size: 22px;
    font-weight: 700;
    color: #4CAF50;
}

.cta-form-section {
    padding: 100px 40px;
    background: linear-gradient(to right, #2c3e50, #3498db);
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.form-container h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #1a1a1a;
    text-align: center;
}

.form-container > p {
    text-align: center;
    color: #666;
    margin-bottom: 32px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    padding: 14px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: #4CAF50;
}

.contact-form textarea {
    resize: vertical;
}

.btn-submit {
    padding: 16px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #45a049;
}

.scientific-references {
    padding: 60px 40px;
    background: #f8f9fa;
}

.scientific-references h3 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.references-list {
    max-width: 900px;
    margin: 0 auto;
    padding-left: 20px;
}

.references-list li {
    margin-bottom: 12px;
    line-height: 1.6;
}

.references-list a {
    color: #4CAF50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.references-list a:hover {
    color: #45a049;
    text-decoration: underline;
}

.disclaimer-section {
    padding: 40px;
    background: #fff8e1;
    border-top: 2px solid #ffd54f;
}

.disclaimer {
    max-width: 1000px;
    margin: 0 auto;
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    text-align: center;
}

.footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 60px 40px 20px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand h4,
.footer-links h4,
.footer-legal h4,
.footer-contact h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-brand p,
.footer-contact p {
    color: #aaa;
    margin-bottom: 8px;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 8px;
}

.footer-links a,
.footer-legal a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #4CAF50;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }

    .nav-minimal {
        gap: 16px;
    }

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

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

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

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

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

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

    .form-container {
        padding: 40px 24px;
    }

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

.page-header {
    padding: 140px 40px 60px;
    text-align: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.9;
}

.page-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 40px;
}

.page-content h2 {
    font-size: 32px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.page-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a4a4a;
}

.page-content ul {
    margin-left: 24px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 8px;
    line-height: 1.6;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    margin-bottom: 20px;
    background-color: #34495e;
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 16px;
}

.service-card .price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #4CAF50;
    margin-bottom: 20px;
}

.service-card button {
    width: 100%;
    padding: 12px;
    background: #4CAF50;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.service-card button:hover {
    background: #45a049;
}

.contact-info {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.contact-info h3 {
    margin-top: 0;
}

.contact-info p {
    margin-bottom: 12px;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px;
}

.thanks-content {
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    color: #4CAF50;
    margin-bottom: 24px;
}

.thanks-content p {
    font-size: 20px;
    color: #666;
    margin-bottom: 32px;
}

.thanks-content a {
    display: inline-block;
    padding: 14px 32px;
    background: #4CAF50;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: background 0.3s ease;
}

.thanks-content a:hover {
    background: #45a049;
}

.about-intro {
    padding: 80px 40px;
    background: #ffffff;
}

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

.about-intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-intro-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 16px;
}

.about-image {
    width: 100%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 8px;
    background-color: #34495e;
}

.values-section {
    padding: 80px 40px;
    background: #f8f9fa;
}

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

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

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

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