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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: #2c3e50;
    line-height: 1.6;
    background: #ffffff;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a365d;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

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

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

.ad-notice {
    font-size: 0.75rem;
    color: #718096;
    padding: 0.25rem 0.75rem;
    border: 1px solid #e2e8f0;
    border-radius: 4px;
}

.hero-card {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.25rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.cta-primary {
    background: #3182ce;
    color: #ffffff;
    border: none;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #2c5282;
}

.hero-image {
    flex: 1;
    background: #f7fafc;
    border-radius: 12px;
    overflow: hidden;
}

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

.intro-statement {
    background: #1a365d;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.statement-card {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    color: #ffffff;
}

.statement-card h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.statement-card p {
    font-size: 1.3rem;
    line-height: 1.7;
}

.cards-grid {
    max-width: 1400px;
    margin: 5rem auto;
    padding: 0 2rem;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1a202c;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 320px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.1);
}

.card-image {
    width: 100%;
    height: 240px;
    background: #edf2f7;
    overflow: hidden;
}

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

.card-content {
    padding: 2rem;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.card-content p {
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.price-tag {
    font-size: 1.75rem;
    font-weight: 700;
    color: #3182ce;
    margin-bottom: 1.5rem;
}

.select-service {
    width: 100%;
    background: #3182ce;
    color: #ffffff;
    border: none;
    padding: 0.9rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.select-service:hover {
    background: #2c5282;
}

.testimonials-cards {
    background: #f7fafc;
    padding: 5rem 2rem;
    margin: 5rem 0;
}

.testimonials-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.testimonial-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 12px;
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #2d3748;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.author {
    font-weight: 600;
    color: #3182ce;
}

.contact-form-card {
    max-width: 800px;
    margin: 5rem auto;
    padding: 3rem;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a202c;
}

.form-container > p {
    color: #4a5568;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    background: #3182ce;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-btn:hover {
    background: #2c5282;
}

.why-card {
    max-width: 1000px;
    margin: 5rem auto;
    padding: 3rem;
    background: #edf2f7;
    border-radius: 12px;
}

.why-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.why-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2d3748;
    margin-bottom: 1rem;
}

.main-footer {
    background: #1a202c;
    color: #e2e8f0;
    padding: 4rem 2rem 2rem;
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.footer-section {
    flex: 1 1 250px;
}

.footer-section h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

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

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

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

.footer-section a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid #2d3748;
}

.disclaimer {
    font-size: 0.85rem;
    color: #a0aec0;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-bottom p {
    text-align: center;
    color: #718096;
    font-size: 0.9rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 2rem;
}

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

.cookie-content a {
    color: #63b3ed;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-accept,
.cookie-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}

.cookie-accept {
    background: #3182ce;
    color: #ffffff;
}

.cookie-accept:hover {
    background: #2c5282;
}

.cookie-reject {
    background: #4a5568;
    color: #ffffff;
}

.cookie-reject:hover {
    background: #2d3748;
}

.thanks-container {
    max-width: 800px;
    margin: 5rem auto;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-container h1 {
    font-size: 2.5rem;
    color: #1a202c;
    margin-bottom: 1.5rem;
}

.thanks-container p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 2rem;
}

.service-info {
    background: #edf2f7;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.service-info strong {
    color: #3182ce;
    font-size: 1.3rem;
}

.content-page {
    max-width: 900px;
    margin: 3rem auto;
    padding: 2rem;
}

.content-page h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a202c;
}

.content-page h2 {
    font-size: 1.8rem;
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: #2d3748;
}

.content-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #2d3748;
}

.content-page p {
    margin-bottom: 1rem;
    line-height: 1.8;
    color: #4a5568;
}

.content-page ul,
.content-page ol {
    margin-bottom: 1.5rem;
    margin-left: 2rem;
}

.content-page li {
    margin-bottom: 0.5rem;
    line-height: 1.7;
    color: #4a5568;
}

.contact-info-card {
    background: #f7fafc;
    padding: 2rem;
    border-radius: 12px;
    margin: 2rem 0;
    border-left: 4px solid #3182ce;
}

.contact-info-card h3 {
    margin-top: 0;
}

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

    .hero-content h1 {
        font-size: 2rem;
    }

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

    .testimonial-card {
        flex: 1 1 100%;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

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

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