* {
    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: #2c3e50;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #ffc107;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 16px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

.nav-links a:hover {
    color: #e67e22;
}

.hero-card {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 24px;
}

.hero-content {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.hero-text-card {
    flex: 1;
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-text-card h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #2c3e50;
}

.hero-text-card p {
    font-size: 18px;
    color: #546e7a;
    line-height: 1.7;
}

.hero-image-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    background-color: #e0e0e0;
}

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

.story-cards {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
}

.card-grid {
    display: flex;
    gap: 32px;
}

.story-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.story-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.story-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
}

.story-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

.insight-card {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
}

.insight-container {
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    display: flex;
    overflow: hidden;
}

.insight-image {
    flex: 0 0 45%;
    background-color: #e0e0e0;
}

.insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.insight-text {
    flex: 1;
    padding: 48px;
}

.insight-text h2 {
    font-size: 32px;
    margin-bottom: 28px;
    color: #2c3e50;
}

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

.benefit-list li {
    padding: 12px 0;
    border-bottom: 1px solid #ecf0f1;
    font-size: 16px;
    line-height: 1.6;
}

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

.benefit-list strong {
    color: #e67e22;
}

.trust-cards {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 24px;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 48px;
    color: #2c3e50;
}

.testimonial-grid {
    display: flex;
    gap: 32px;
}

.testimonial-card {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    border-left: 4px solid #e67e22;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
    color: #546e7a;
}

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

.products-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 24px;
}

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

.product-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.product-card.featured {
    flex: 1 1 100%;
    flex-direction: row;
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background-color: #e67e22;
    color: #ffffff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.product-card.featured .product-image {
    flex: 0 0 45%;
}

.product-card.featured .product-info {
    flex: 1;
}

.product-image {
    width: 100%;
    height: 280px;
    background-color: #e0e0e0;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-info {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-info h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.product-info h4 {
    font-size: 16px;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.product-info p {
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
    margin-bottom: 16px;
}

.product-details {
    list-style: none;
    margin-bottom: 20px;
}

.product-details li {
    padding: 6px 0;
    font-size: 14px;
    color: #546e7a;
    padding-left: 20px;
    position: relative;
}

.product-details li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #e67e22;
    font-weight: bold;
}

.product-features {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.product-features span {
    background-color: #ecf0f1;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 13px;
    color: #2c3e50;
}

.product-price {
    font-size: 28px;
    font-weight: 700;
    color: #e67e22;
    margin-bottom: 16px;
}

.savings-note {
    font-size: 13px;
    color: #27ae60;
    font-weight: 600;
    margin-bottom: 16px;
}

.select-service-btn {
    background-color: #e67e22;
    color: #ffffff;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: auto;
}

.select-service-btn:hover {
    background-color: #d35400;
    transform: scale(1.02);
}

.form-section {
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 24px;
}

.form-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    max-width: 700px;
    margin: 0 auto;
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.form-card > p {
    font-size: 16px;
    color: #546e7a;
    margin-bottom: 32px;
}

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

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

.form-group label {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2c3e50;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #ecf0f1;
    border-radius: 8px;
    font-size: 15px;
    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: #e67e22;
}

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

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

.disclaimer-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
}

.disclaimer-card {
    background-color: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 32px;
    border-radius: 8px;
}

.disclaimer-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #856404;
}

.disclaimer-card p {
    font-size: 14px;
    line-height: 1.7;
    color: #856404;
}

.main-footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    margin-top: 80px;
    padding: 48px 24px 24px;
}

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

.footer-card {
    flex: 1;
}

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

.footer-card p {
    font-size: 14px;
    line-height: 1.6;
    color: #bdc3c7;
}

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

.footer-card ul li {
    margin-bottom: 8px;
}

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

.footer-card ul li a:hover {
    color: #e67e22;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #34495e;
    font-size: 14px;
    color: #95a5a6;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0,0,0,0.2);
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #229954;
}

.cookie-btn.reject {
    background-color: #95a5a6;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #7f8c8d;
}

.page-hero {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 24px;
}

.hero-card-small {
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

.hero-card-small h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.hero-card-small p {
    font-size: 18px;
    color: #546e7a;
}

.about-content {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
}

.content-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}

.content-card {
    flex: 1 1 calc(50% - 16px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.content-card.large {
    flex: 1 1 100%;
}

.content-card.highlight {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.content-card h2,
.content-card h3 {
    margin-bottom: 20px;
}

.content-card h2 {
    font-size: 28px;
}

.content-card h3 {
    font-size: 22px;
}

.content-card p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
}

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

.values-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    font-size: 15px;
}

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

.mission-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
}

.mission-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.mission-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #2c3e50;
}

.mission-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #546e7a;
    margin-bottom: 20px;
}

.info-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
}

.info-card {
    background-color: #ffffff;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.info-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2c3e50;
    text-align: center;
}

.info-grid {
    display: flex;
    gap: 32px;
}

.info-item {
    flex: 1;
    text-align: center;
}

.info-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #e67e22;
}

.info-item p {
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
}

.contact-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
}

.contact-grid {
    display: flex;
    gap: 32px;
}

.contact-info-card,
.contact-map-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info-card h2,
.contact-map-card h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: #2c3e50;
}

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

.contact-detail h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #e67e22;
}

.contact-detail p {
    font-size: 15px;
    line-height: 1.7;
    color: #546e7a;
}

.email-display {
    font-weight: 600;
    color: #2c3e50;
}

.map-placeholder {
    background-color: #ecf0f1;
    padding: 48px 32px;
    border-radius: 8px;
    text-align: center;
}

.map-placeholder p {
    font-size: 16px;
    line-height: 1.7;
    color: #546e7a;
    margin-bottom: 16px;
}

.map-note {
    font-size: 14px;
    color: #95a5a6;
}

.additional-info {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
}

.info-cards-grid {
    display: flex;
    gap: 32px;
}

.info-card-small {
    flex: 1;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.info-card-small h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.info-card-small p {
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
}

.thanks-section {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 24px;
}

.thanks-card {
    background-color: #ffffff;
    padding: 60px 48px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
    text-align: center;
}

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

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.thanks-message {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
}

.service-confirmation {
    background-color: #ecf0f1;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
    font-size: 16px;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    max-width: 600px;
    margin: 0 auto 32px;
}

.next-steps h2 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.steps-list {
    list-style: none;
    counter-reset: step-counter;
}

.steps-list li {
    counter-increment: step-counter;
    padding: 12px 0 12px 40px;
    position: relative;
    font-size: 15px;
    line-height: 1.6;
    color: #546e7a;
}

.steps-list li:before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 12px;
    background-color: #e67e22;
    color: #ffffff;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 14px;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary,
.btn-secondary {
    padding: 14px 28px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.btn-primary {
    background-color: #e67e22;
    color: #ffffff;
}

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

.btn-secondary {
    background-color: #ecf0f1;
    color: #2c3e50;
}

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

.legal-page {
    max-width: 1400px;
    margin: 40px auto;
    padding: 0 24px;
}

.legal-container {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.legal-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-container h4 {
    font-size: 17px;
    margin-top: 16px;
    margin-bottom: 8px;
    color: #2c3e50;
}

.legal-container p {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #546e7a;
}

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

.legal-container ul li {
    font-size: 15px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #546e7a;
}

.last-updated {
    font-size: 14px;
    color: #95a5a6;
    margin-bottom: 32px;
}

@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
    }

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

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

    .insight-image {
        flex: 0 0 300px;
    }

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

    .product-card {
        flex: 1 1 calc(50% - 16px);
    }

    .product-card.featured {
        flex-direction: column;
    }

    .product-card.featured .product-image {
        flex: 0 0 auto;
        height: 280px;
    }

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

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

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

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

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

    .info-cards-grid {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 16px;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
        justify-content: center;
    }

    .hero-text-card {
        padding: 40px 32px;
    }

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

    .product-card {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .form-card {
        padding: 32px 24px;
    }

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