/* 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: #333;
    background-color: #fff;
}

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

a {
    color: #dc2626;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #991b1b;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #fff;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    display: none;
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept {
    background-color: #dc2626;
    color: #fff;
    border: none;
    padding: 10px 30px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

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

/* Header and Navigation */
.header {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-link {
    color: #333;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 5px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    background-color: #dc2626;
    color: #fff;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 10px;
}

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

/* Sections */
.section {
    padding: 80px 0;
}

.section-alt {
    background-color: #f9fafb;
}

.text-center {
    text-align: center;
}

h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1f2937;
}

h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #374151;
}

h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #4b5563;
}

/* Intro Grid */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.intro-image img,
.product-image img {
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.intro-text p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.product-info h3 {
    font-size: 32px;
    color: #dc2626;
    margin-bottom: 20px;
}

.product-info p {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.product-features,
.product-benefits {
    background-color: #fff;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    border-left: 4px solid #dc2626;
}

.product-features ul,
.product-benefits ul {
    list-style: none;
    padding-left: 0;
}

.product-features li,
.product-benefits li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.product-features li:before,
.product-benefits li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #dc2626;
    font-weight: 700;
    font-size: 20px;
}

.note {
    background-color: #fef2f2;
    padding: 15px;
    border-radius: 5px;
    border-left: 4px solid #dc2626;
    font-size: 16px;
}

/* Care Grid */
.care-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.care-card {
    background-color: #fff;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.care-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.care-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.benefit-item {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.benefit-number {
    font-size: 48px;
    font-weight: 700;
    color: #dc2626;
    opacity: 0.2;
    margin-bottom: 15px;
}

/* Warning Section */
.warning-section {
    background-color: #fef2f2;
}

.warning-box {
    background-color: #fff;
    border: 3px solid #dc2626;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.warning-box h2 {
    color: #dc2626;
    margin-bottom: 25px;
}

.warning-text {
    font-size: 24px;
    font-weight: 700;
    color: #991b1b;
    margin-bottom: 25px;
}

.warning-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter-section {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: #fff;
}

.newsletter-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-box h2 {
    color: #fff;
    margin-bottom: 20px;
}

.newsletter-box p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    padding: 15px;
    border: 1px solid #d1d5db;
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #dc2626;
}

.form-check {
    display: flex;
    align-items: start;
    gap: 10px;
    text-align: left;
}

.form-check input[type="checkbox"] {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-check label {
    font-size: 14px;
    cursor: pointer;
}

.form-check a {
    color: #fca5a5;
    text-decoration: underline;
}

.btn-submit {
    background-color: #dc2626;
    color: #fff;
    border: none;
    padding: 15px 40px;
    border-radius: 5px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.btn-submit:hover {
    background-color: #991b1b;
}

/* About Page */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.about-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.about-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
}

.about-content p,
.about-content ul {
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.about-content ul {
    padding-left: 25px;
}

.values-list {
    display: grid;
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    background-color: #f9fafb;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
}

.value-item h4 {
    margin-bottom: 10px;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.philosophy-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.notice-box {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 30px;
    max-width: 900px;
    margin: 0 auto;
}

.notice-box h2 {
    color: #856404;
    margin-bottom: 20px;
}

.notice-box p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 15px;
    color: #856404;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.contact-info-card {
    background-color: #fff;
    padding: 35px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.contact-info-card h3 {
    margin-bottom: 15px;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contact-info-section h2 {
    margin-bottom: 20px;
}

.contact-details {
    margin-top: 40px;
}

.contact-detail {
    margin-bottom: 30px;
}

.contact-detail h3 {
    margin-bottom: 10px;
}

.contact-detail p {
    font-size: 18px;
    line-height: 1.8;
}

.small-text {
    font-size: 14px;
    color: #6b7280;
    margin-top: 5px;
}

.contact-note {
    background-color: #fef2f2;
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid #dc2626;
    margin-top: 30px;
}

.form-box {
    background-color: #f9fafb;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.form-box h2 {
    margin-bottom: 15px;
}

.form-box p {
    margin-bottom: 30px;
    font-size: 16px;
}

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

.form-note {
    font-size: 14px;
    color: #6b7280;
    margin-top: 10px;
}

.info-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.info-box {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.info-box h3 {
    margin-bottom: 15px;
}

/* Thank You Page */
.thankyou-section {
    padding: 100px 0;
    text-align: center;
}

.thankyou-content {
    max-width: 700px;
    margin: 0 auto;
}

.thankyou-icon {
    width: 100px;
    height: 100px;
    background-color: #22c55e;
    color: #fff;
    font-size: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.thankyou-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1f2937;
}

.thankyou-text {
    font-size: 20px;
    color: #22c55e;
    font-weight: 600;
    margin-bottom: 20px;
}

.thankyou-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 30px;
}

.thankyou-info {
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 10px;
    margin: 40px 0;
    text-align: left;
}

.thankyou-info h3 {
    text-align: center;
    margin-bottom: 20px;
}

.thankyou-info ul {
    list-style: none;
    padding-left: 0;
}

.thankyou-info li {
    padding: 10px 0;
    padding-left: 30px;
    position: relative;
}

.thankyou-info li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #22c55e;
    font-weight: 700;
    font-size: 20px;
}

.thankyou-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
    flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
    padding: 15px 35px;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-primary {
    background-color: #dc2626;
    color: #fff;
}

.btn-primary:hover {
    background-color: #991b1b;
}

.btn-secondary {
    background-color: #fff;
    color: #dc2626;
    border: 2px solid #dc2626;
}

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

.thankyou-note {
    background-color: #fef2f2;
    padding: 20px;
    border-radius: 8px;
    font-size: 14px;
}

/* Legal Pages */
.legal-content {
    max-width: 900px;
    margin: 0 auto;
}

.legal-text h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1f2937;
}

.legal-text h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #374151;
}

.legal-text h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #4b5563;
}

.legal-text p {
    margin-bottom: 20px;
    font-size: 16px;
    line-height: 1.8;
}

.legal-text ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-text li {
    margin-bottom: 10px;
    line-height: 1.8;
}

.important-warning {
    background-color: #fef2f2;
    border: 3px solid #dc2626;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    margin-bottom: 40px;
}

.important-warning h2 {
    color: #dc2626;
    margin: 0 0 20px 0;
}

.large-text {
    font-size: 20px;
    line-height: 1.6;
}

.important-notice {
    background-color: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 10px;
    padding: 25px;
    margin-top: 40px;
}

.important-notice h3 {
    color: #856404;
    margin-bottom: 15px;
}

.important-notice p {
    color: #856404;
}

.final-reminder {
    background-color: #fef2f2;
    border: 3px solid #dc2626;
    border-radius: 10px;
    padding: 30px;
    margin-top: 40px;
}

.final-reminder h2 {
    color: #dc2626;
    margin-bottom: 20px;
    text-align: center;
}

.final-reminder p {
    text-align: center;
}

/* Footer */
.footer {
    background-color: #1f2937;
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: #fff;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    opacity: 0.8;
    line-height: 1.8;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: #d1d5db;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #fca5a5;
}

.footer a {
    color: #fca5a5;
}

.footer a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #374151;
}

.footer-bottom p {
    opacity: 0.7;
    font-size: 14px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-link {
        padding: 12px;
        border-radius: 5px;
    }

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

    .hero-subtitle {
        font-size: 18px;
    }

    .page-header h1 {
        font-size: 32px;
    }

    h2 {
        font-size: 28px;
    }

    .intro-grid,
    .product-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .care-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
    }

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

    .thankyou-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    .section {
        padding: 60px 0;
    }

    .form-box {
        padding: 25px;
    }
}
