* {
    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: #fafbfc;
}

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

.header-card {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-minimal {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

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

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

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

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

.hero-card {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
    display: flex;
    gap: 60px;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 32px;
    line-height: 1.8;
}

.cta-primary {
    display: inline-block;
    background: #2c3e50;
    color: white;
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #1a252f;
}

.hero-visual {
    flex: 1;
    background: #e8eaf6;
}

.hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.story-card {
    background: white;
    padding: 80px 30px;
    margin: 80px 0;
}

.card-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

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

.story-text p {
    font-size: 18px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.8;
}

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

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

.trust-card {
    flex: 1;
    background: white;
    padding: 40px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.trust-card p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.7;
}

.problem-insight {
    background: #f5f7fa;
    padding: 80px 30px;
    margin: 80px 0;
}

.insight-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
    align-items: center;
}

.insight-image {
    flex: 1;
    background: #e0e7ff;
}

.insight-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    object-fit: cover;
}

.insight-text {
    flex: 1;
}

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

.insight-text p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 18px;
    line-height: 1.8;
}

.services-showcase {
    max-width: 1200px;
    margin: 100px auto;
    padding: 0 30px;
}

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

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

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s;
}

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

.service-image {
    background: #e3f2fd;
    height: 240px;
    overflow: hidden;
}

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

.service-info {
    padding: 30px;
}

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

.service-info p {
    font-size: 15px;
    color: #546e7a;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    background: #2c3e50;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.testimonials-flow {
    background: white;
    padding: 80px 30px;
    margin: 80px 0;
}

.testimonials-flow h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.testimonials-cards {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 30px;
}

.testimonial-card {
    flex: 1;
    background: #f5f7fa;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
}

.testimonial-card p {
    font-size: 16px;
    color: #2c3e50;
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

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

.form-section {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 30px;
}

.form-card {
    background: white;
    padding: 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

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

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

.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 textarea {
    padding: 12px 16px;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background: #f5f5f5;
    cursor: not-allowed;
}

.submit-btn {
    background: #2c3e50;
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

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

.disclaimer-section {
    background: #fff9e6;
    padding: 60px 30px;
    margin: 80px 0;
}

.disclaimer-card {
    max-width: 900px;
    margin: 0 auto;
}

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

.disclaimer-card p {
    font-size: 15px;
    color: #5a5a5a;
    line-height: 1.7;
}

.footer {
    background: #1a1a1a;
    color: white;
    padding: 60px 30px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-section p {
    font-size: 14px;
    color: #bbb;
    line-height: 1.7;
}

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

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

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

.footer-section ul li a:hover {
    color: white;
}

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

.footer-bottom p {
    font-size: 13px;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    padding: 24px;
    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;
    gap: 30px;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #546e7a;
    margin: 0;
}

.cookie-content a {
    color: #2c3e50;
}

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-btn.accept {
    background: #2c3e50;
    color: white;
}

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

.cookie-btn.reject {
    background: #e0e0e0;
    color: #2c3e50;
}

.cookie-btn.reject:hover {
    background: #d0d0d0;
}

.about-page,
.services-page,
.contact-page,
.thanks-page {
    min-height: calc(100vh - 400px);
}

.about-hero,
.services-header,
.contact-header {
    max-width: 900px;
    margin: 80px auto 60px;
    padding: 0 30px;
    text-align: center;
}

.about-hero h1,
.services-header h1,
.contact-header h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.about-hero p,
.services-header p,
.contact-header p {
    font-size: 18px;
    color: #546e7a;
}

.about-story {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 30px;
}

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

.about-card {
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 0 0 calc(50% - 15px);
}

.about-card.full-width {
    flex: 0 0 100%;
}

.about-card h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

.about-image {
    background: #e8f5e9;
    height: 100%;
    min-height: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.values-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.value-card {
    flex: 0 0 calc(50% - 15px);
    background: white;
    padding: 40px;
    border-radius: 8px;
    border-left: 4px solid #2c3e50;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

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

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

.cta-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
}

.cta-card {
    background: #2c3e50;
    color: white;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.cta-card h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-card p {
    font-size: 17px;
    margin-bottom: 32px;
    opacity: 0.9;
}

.cta-button {
    display: inline-block;
    background: white;
    color: #2c3e50;
    padding: 16px 40px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: background 0.3s;
}

.cta-button:hover {
    background: #f0f0f0;
}

.services-detailed {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 30px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
    background: white;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-detail-image {
    flex: 1;
    background: #e8eaf6;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-detail-content p {
    font-size: 16px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 16px;
}

.price-tag {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin: 24px 0;
}

.services-cta {
    max-width: 900px;
    margin: 100px auto;
    padding: 0 30px;
}

.cta-box {
    background: #f5f7fa;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

.cta-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.cta-box p {
    font-size: 17px;
    color: #546e7a;
    margin-bottom: 32px;
}

.contact-info-section {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 30px;
}

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

.contact-info-card {
    flex: 1;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.contact-note {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 30px;
}

.note-card {
    background: #fff3cd;
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid #ffc107;
}

.note-card p {
    font-size: 15px;
    color: #856404;
    line-height: 1.7;
    margin: 0;
}

.note-card a {
    color: #856404;
    font-weight: 600;
}

.thanks-content {
    max-width: 800px;
    margin: 100px auto;
    padding: 0 30px;
}

.thanks-card {
    background: white;
    padding: 80px 60px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-icon {
    font-size: 80px;
    color: #4caf50;
    margin-bottom: 24px;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

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

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

.btn-primary,
.btn-secondary {
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}

.btn-primary {
    background: #2c3e50;
    color: white;
}

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

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

.btn-secondary:hover {
    background: #d0d0d0;
}

.legal-page {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 30px;
    min-height: calc(100vh - 500px);
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a1a1a;
}

.legal-section {
    margin-bottom: 40px;
}

.legal-section h2 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

.legal-section p {
    font-size: 15px;
    color: #546e7a;
    line-height: 1.8;
    margin-bottom: 12px;
}

.legal-section ul {
    margin-left: 30px;
    margin-bottom: 12px;
}

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

.legal-footer {
    margin-top: 60px;
    padding-top: 20px;
    border-top: 1px solid #e0e0e0;
    font-size: 14px;
    color: #999;
}

@media (max-width: 768px) {
    .hero-card {
        flex-direction: column;
        gap: 40px;
    }

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

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

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

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

    .service-card {
        flex: 0 0 100%;
    }

    .testimonials-cards {
        flex-direction: column;
    }

    .service-detail-card,
    .service-detail-card.reverse {
        flex-direction: column;
    }

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

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

    .about-card {
        flex: 0 0 100%;
    }

    .value-card {
        flex: 0 0 100%;
    }

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

    .nav-links {
        flex-wrap: wrap;
        gap: 15px;
        font-size: 14px;
    }

    .story-cards {
        flex-direction: column;
    }
}
