/* Reset and Base Styles */
* {
    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: #333;
    background-color: #fff;
}

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

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1e40af;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: #1e40af;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #fff;
    padding: 4rem 0;
    text-align: center;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
}

/* Page Header */
.page-header {
    background-color: #f8fafc;
    padding: 3rem 0;
    text-align: center;
    border-bottom: 1px solid #e2e8f0;
}

.page-header h1 {
    font-size: 2.5rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.page-header p {
    color: #64748b;
    font-size: 1.1rem;
}

/* Section */
.section {
    padding: 4rem 0;
}

.bg-light {
    background-color: #f8fafc;
}

/* Grid Layouts */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}

.intro-image img,
.product-image img,
.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.intro-text h2,
.product-info h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.intro-text p,
.product-info p {
    margin-bottom: 1rem;
    color: #475569;
}

/* Product Section */
.product-section {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: start;
}

.product-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    margin-bottom: 1.5rem;
}

.product-details {
    margin-top: 2rem;
}

.product-details h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin: 1.5rem 0 1rem;
}

.benefits-list {
    list-style: none;
    margin: 1rem 0;
}

.benefits-list li {
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.benefits-list li:last-child {
    border-bottom: none;
}

/* Care Section */
.care-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1e293b;
}

.lead {
    text-align: center;
    font-size: 1.2rem;
    color: #64748b;
    margin-bottom: 3rem;
}

.care-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.care-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.care-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.care-card h3 {
    font-size: 1.3rem;
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.care-card p {
    color: #64748b;
}

/* Advantages */
.advantages-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.advantage-item {
    background: #fff;
    padding: 1.5rem;
    border-left: 4px solid #1e40af;
    border-radius: 4px;
}

.advantage-item h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.advantage-item p {
    color: #64748b;
}

/* Disclaimer Section */
.disclaimer-section {
    background-color: #fef3c7;
}

.disclaimer-box {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    border: 2px solid #f59e0b;
}

.disclaimer-box h2 {
    color: #92400e;
    margin-bottom: 1rem;
}

.disclaimer-text {
    font-size: 1.2rem;
    color: #92400e;
    font-weight: bold;
    margin-bottom: 1rem;
}

.disclaimer-box p {
    margin-bottom: 1rem;
    color: #78350f;
}

.link-primary {
    color: #1e40af;
    text-decoration: underline;
}

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

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

.newsletter-box h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.newsletter-box p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.newsletter-form {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
}

/* Forms */
.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
    font-weight: 500;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #cbd5e1;
    border-radius: 4px;
    font-size: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: #1e40af;
}

.checkbox-group {
    margin: 1rem 0;
}

.checkbox-label {
    display: flex;
    align-items: start;
    gap: 0.5rem;
    cursor: pointer;
    color: #333;
}

.checkbox-label input[type="checkbox"] {
    margin-top: 0.25rem;
}

.checkbox-label a {
    color: #1e40af;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.3s;
}

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

.btn-primary:hover {
    background-color: #1e3a8a;
}

.btn-secondary {
    background-color: #64748b;
    color: #fff;
}

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

.btn-accept {
    background-color: #1e40af;
    color: #fff;
    padding: 0.5rem 1.5rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

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

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    color: #1e293b;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #64748b;
}

.contact-form-section {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
}

.contact-form {
    margin-top: 1.5rem;
}

.map-placeholder {
    background: #e2e8f0;
    padding: 3rem;
    border-radius: 8px;
    text-align: center;
    color: #64748b;
}

/* Thank You Page */
.thank-you-section {
    min-height: 60vh;
    display: flex;
    align-items: center;
}

.thank-you-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #10b981;
    color: #fff;
    font-size: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.thank-you-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

/* About Page */
.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

.about-text h2 {
    font-size: 2rem;
    color: #1e293b;
    margin-bottom: 1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 2rem;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.value-card h3 {
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #64748b;
}

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

.expertise-list {
    margin: 1.5rem 0;
    padding-left: 1.5rem;
}

.expertise-list li {
    margin-bottom: 0.75rem;
    color: #475569;
}

.note-text {
    background: #fef3c7;
    padding: 1rem;
    border-left: 4px solid #f59e0b;
    margin-top: 1.5rem;
    color: #78350f;
}

.contact-info-box {
    background: #f8fafc;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
}

.contact-details {
    margin: 1.5rem 0;
}

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

.legal-text h2 {
    font-size: 1.75rem;
    color: #1e293b;
    margin: 2rem 0 1rem;
}

.legal-text h3 {
    font-size: 1.3rem;
    color: #334155;
    margin: 1.5rem 0 0.75rem;
}

.legal-text p {
    margin-bottom: 1rem;
    color: #475569;
}

.legal-text ul {
    margin: 1rem 0 1rem 1.5rem;
}

.legal-text li {
    margin-bottom: 0.5rem;
    color: #475569;
}

.legal-text a {
    color: #1e40af;
    text-decoration: underline;
}

.warning-box {
    background: #fee2e2;
    border: 2px solid #dc2626;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.warning-box h2 {
    color: #991b1b;
    margin-bottom: 1rem;
}

.warning-text {
    font-size: 1.2rem;
    color: #991b1b;
}

.final-warning {
    background: #fef3c7;
    border: 2px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin-top: 2rem;
}

.final-warning p {
    color: #92400e;
    margin: 0;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e293b;
    color: #fff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 1000;
    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: 2rem;
    flex-wrap: wrap;
}

.cookie-content p {
    margin: 0;
    flex: 1;
}

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

/* Footer */
.footer {
    background-color: #1e293b;
    color: #e2e8f0;
    padding: 3rem 0 1rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-col h3 {
    color: #fff;
    margin-bottom: 1rem;
}

.footer-col p {
    margin-bottom: 0.5rem;
}

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

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #334155;
}

/* Text Utilities */
.text-center {
    text-align: center;
}

/* Responsive Design */
@media (min-width: 768px) {
    .intro-grid,
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .product-section {
        grid-template-columns: 1fr 1fr;
    }
    
    .care-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .footer-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .cookie-content {
        flex-wrap: nowrap;
    }
}

@media (min-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .care-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}
