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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #fff;
    padding: 20px;
    z-index: 1000;
    display: none;
}

.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;
}

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

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

.btn-accept {
    background: #2563eb;
    color: #fff;
}

.btn-accept:hover {
    background: #1d4ed8;
}

.btn-reject {
    background: #6b7280;
    color: #fff;
}

.btn-reject:hover {
    background: #4b5563;
}

.main-header {
    background: #fff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

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

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

.ad-notice {
    font-size: 11px;
    color: #6b7280;
    padding: 4px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 30px;
}

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

.main-nav a:hover {
    color: #2563eb;
}

.hero-section {
    position: relative;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-color: #1e293b;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #fff;
    margin-bottom: 20px;
    text-align: center;
}

.hero-overlay p {
    font-size: 20px;
    color: #e5e7eb;
    text-align: center;
}

.intro-section {
    padding: 80px 0;
    background: #f9fafb;
}

.intro-card {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1e293b;
}

.intro-card p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #475569;
}

.cards-section {
    padding: 80px 0;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 50px;
    color: #1e293b;
}

.cards-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.feature-card {
    flex: 1;
    min-width: 300px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0,0,0,0.15);
}

.card-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e1;
}

.card-content {
    padding: 30px;
}

.card-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.card-content p {
    font-size: 16px;
    color: #64748b;
}

.story-section {
    padding: 80px 0;
    background: #1e293b;
    color: #e5e7eb;
}

.story-section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #fff;
}

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

.products-preview {
    padding: 80px 0;
    background: #f9fafb;
}

.products-grid {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.product-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.product-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #cbd5e1;
}

.product-info {
    padding: 25px;
}

.product-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.product-info p {
    font-size: 15px;
    color: #64748b;
    margin-bottom: 20px;
}

.btn-select {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 12px 28px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: 500;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: #1d4ed8;
}

.trust-section {
    padding: 80px 0;
}

.trust-content {
    display: flex;
    gap: 50px;
    align-items: center;
    flex-wrap: wrap;
}

.trust-text {
    flex: 1;
    min-width: 300px;
}

.trust-text h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1e293b;
}

.testimonial {
    background: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #2563eb;
}

.testimonial p {
    font-size: 16px;
    color: #475569;
    font-style: italic;
    margin-bottom: 12px;
}

.testimonial-author {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
}

.trust-image {
    flex: 1;
    min-width: 300px;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #cbd5e1;
}

.pricing-section {
    padding: 80px 0;
    background: #f9fafb;
}

.pricing-intro {
    text-align: center;
    font-size: 18px;
    color: #64748b;
    margin-bottom: 50px;
}

.pricing-grid {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: center;
}

.pricing-card {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 280px;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: relative;
}

.pricing-card.featured {
    border: 2px solid #2563eb;
}

.featured-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #2563eb;
    color: #fff;
    padding: 4px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1e293b;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 24px;
}

.features-list {
    list-style: none;
    margin-bottom: 28px;
}

.features-list li {
    padding: 10px 0;
    color: #475569;
    border-bottom: 1px solid #e5e7eb;
    font-size: 15px;
}

.features-list li:before {
    content: '✓ ';
    color: #10b981;
    font-weight: 700;
    margin-right: 8px;
}

.form-section {
    padding: 80px 0;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1e293b;
}

.form-wrapper p {
    font-size: 16px;
    color: #64748b;
    margin-bottom: 32px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

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

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

.btn-submit {
    background: #2563eb;
    color: #fff;
    border: none;
    padding: 14px 32px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: background 0.3s ease;
}

.btn-submit:hover {
    background: #1d4ed8;
}

.disclaimer-section {
    padding: 40px 0;
    background: #f9fafb;
}

.disclaimer {
    font-size: 13px;
    color: #6b7280;
    text-align: center;
    line-height: 1.6;
}

.main-footer {
    background: #1e293b;
    color: #e5e7eb;
    padding: 60px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-col p {
    font-size: 14px;
    color: #cbd5e1;
}

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

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

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

.footer-col ul li a:hover {
    color: #fff;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #94a3b8;
}

.contact-page {
    padding: 80px 0;
}

.contact-content {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1e293b;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

.info-block p {
    font-size: 16px;
    color: #64748b;
    line-height: 1.8;
}

.about-page {
    padding: 80px 0;
}

.about-hero {
    margin-bottom: 60px;
}

.about-hero h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1e293b;
}

.about-hero p {
    font-size: 20px;
    color: #64748b;
}

.about-section {
    margin-bottom: 60px;
}

.about-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1e293b;
}

.about-section p {
    font-size: 18px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 16px;
}

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

.value-card {
    flex: 1;
    min-width: 250px;
    background: #f9fafb;
    padding: 30px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e293b;
}

.value-card p {
    font-size: 16px;
    color: #64748b;
}

.services-page {
    padding: 80px 0;
}

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

.services-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1e293b;
}

.services-header p {
    font-size: 20px;
    color: #64748b;
}

.service-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    flex-wrap: wrap;
}

.service-image {
    flex: 0 0 300px;
    height: 250px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    background-color: #cbd5e1;
}

.service-details {
    flex: 1;
    min-width: 300px;
}

.service-details h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1e293b;
}

.service-details .service-price {
    font-size: 24px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.service-details p {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 12px;
}

.thanks-page {
    padding: 120px 0;
    text-align: center;
}

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

.thanks-icon {
    font-size: 64px;
    color: #10b981;
    margin-bottom: 24px;
}

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

.thanks-content p {
    font-size: 18px;
    color: #64748b;
    margin-bottom: 16px;
}

.legal-page {
    padding: 80px 0;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1e293b;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1e293b;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #1e293b;
}

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

.legal-content ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-content ul li {
    font-size: 16px;
    color: #475569;
    line-height: 1.8;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .header-content {
        justify-content: center;
        text-align: center;
    }

    .main-nav {
        width: 100%;
        justify-content: center;
    }

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

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

    .cards-grid,
    .products-grid,
    .pricing-grid {
        flex-direction: column;
    }

    .trust-content {
        flex-direction: column;
    }

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

    .service-image {
        flex: 1;
        width: 100%;
    }
}