* {
    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: #1f2937;
    background-color: #f9fafb;
}

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

.header {
    background-color: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.ad-notice {
    font-size: 11px;
    color: #6b7280;
    background-color: #f3f4f6;
    padding: 4px 10px;
    border-radius: 4px;
}

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

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

.main-nav a:hover {
    color: #1e40af;
}

.hero-card {
    margin-bottom: 40px;
}

.hero-image {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.3));
    width: 100%;
    padding: 60px 0;
}

.hero-overlay h1 {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 700;
}

.hero-overlay p {
    font-size: 20px;
    color: #e5e7eb;
    max-width: 600px;
}

.intro-section {
    padding: 50px 0;
}

.intro-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.intro-card p {
    font-size: 18px;
    color: #4b5563;
}

.services-preview {
    padding: 60px 0;
    background-color: #f3f4f6;
}

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    display: flex;
    flex-direction: column;
}

.card-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #111827;
}

.card-content p {
    color: #6b7280;
    margin-bottom: 15px;
    flex-grow: 1;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #1e40af;
    margin: 15px 0;
}

.btn-card {
    background-color: #1e40af;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #111827;
}

.form-card > p {
    color: #6b7280;
    margin-bottom: 30px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
}

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

.form-group input[readonly] {
    background-color: #f3f4f6;
}

.btn-submit {
    background-color: #1e40af;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s;
}

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

.why-section {
    padding: 60px 0;
}

.why-content {
    display: flex;
    gap: 40px;
    align-items: center;
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.why-image {
    flex: 1;
    height: 400px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

.why-text {
    flex: 1;
}

.why-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.why-text p {
    color: #4b5563;
    margin-bottom: 15px;
    font-size: 17px;
}

.btn-link {
    display: inline-block;
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    margin-top: 15px;
    transition: color 0.3s;
}

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

.footer {
    background-color: #1f2937;
    color: #d1d5db;
    padding: 50px 0 20px;
    margin-top: 60px;
}

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

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

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

.footer-column p,
.footer-column a {
    color: #9ca3af;
    text-decoration: none;
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
}

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

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 20px;
    text-align: center;
    color: #6b7280;
    font-size: 13px;
}

.footer-bottom p {
    margin-bottom: 8px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 20px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    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: 20px;
    flex-wrap: wrap;
}

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

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

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

.btn-cookie {
    background-color: #1e40af;
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

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

.page-hero {
    background-color: #1e40af;
    color: #ffffff;
    padding: 60px 0;
    margin-bottom: 40px;
}

.page-hero h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

.page-hero p {
    font-size: 20px;
    color: #e0e7ff;
}

.about-content {
    padding: 40px 0;
}

.content-card {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.content-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.content-card p {
    color: #4b5563;
    margin-bottom: 15px;
    font-size: 17px;
}

.card-split {
    display: flex;
    gap: 40px;
    align-items: center;
}

.card-split.reverse {
    flex-direction: row-reverse;
}

.split-text {
    flex: 1;
}

.split-image {
    flex: 1;
    height: 350px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
}

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

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

.principle-card {
    background-color: #f9fafb;
    padding: 25px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 10px);
    min-width: 250px;
}

.principle-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e40af;
}

.principle-card p {
    color: #6b7280;
    font-size: 15px;
}

.services-full {
    padding: 40px 0;
}

.service-card-full {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1 1 calc(50% - 15px);
    min-width: 320px;
    display: flex;
    flex-direction: column;
}

.service-details {
    background-color: #f3f4f6;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 15px;
}

.detail-item {
    color: #4b5563;
    font-size: 14px;
    margin-bottom: 5px;
}

.contact-section {
    padding: 40px 0;
}

.contact-grid {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

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

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

.info-item {
    margin-bottom: 25px;
}

.info-item h3 {
    font-size: 18px;
    color: #1e40af;
    margin-bottom: 8px;
}

.info-item p {
    color: #4b5563;
    line-height: 1.8;
}

.map-placeholder {
    height: 300px;
    background-size: cover;
    background-position: center;
    border-radius: 8px;
    margin-bottom: 15px;
}

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

.contact-additional {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.contact-additional h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #111827;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
}

.faq-item {
    flex: 1 1 calc(50% - 12px);
    min-width: 280px;
}

.faq-item h3 {
    font-size: 18px;
    color: #111827;
    margin-bottom: 10px;
}

.faq-item p {
    color: #6b7280;
    font-size: 15px;
}

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

.thanks-card {
    background-color: #ffffff;
    padding: 60px 40px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

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

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

.thanks-card p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 15px;
}

.service-name {
    background-color: #eff6ff;
    padding: 15px;
    border-radius: 8px;
    margin: 25px 0;
    color: #1e40af;
    font-size: 16px;
}

.btn-back {
    display: inline-block;
    background-color: #1e40af;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 25px;
    transition: background-color 0.3s;
}

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

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

.legal-page h1 {
    font-size: 38px;
    margin-bottom: 30px;
    color: #111827;
}

.legal-content {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #1e40af;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #374151;
}

.legal-content p {
    color: #4b5563;
    margin-bottom: 15px;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

.legal-content li {
    color: #4b5563;
    margin-bottom: 10px;
    line-height: 1.7;
}

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

.legal-content a:hover {
    text-decoration: underline;
}

.legal-date {
    margin-top: 40px;
    font-style: italic;
    color: #6b7280;
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 10px;
    }

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

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

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

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

    .why-content {
        flex-direction: column;
        padding: 30px;
    }

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

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

    .faq-item {
        flex: 1 1 100%;
    }

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