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

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.5px;
}

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

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

.main-nav a {
    color: #4b5563;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.2s;
    padding: 8px 0;
    border-bottom: 2px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
    color: #1a202c;
    border-bottom-color: #1a202c;
}

.hero {
    margin-top: -1px;
}

.hero-image {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    align-items: center;
}

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

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

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

.intro-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.intro-card {
    flex: 1;
}

.intro-card h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: #1a202c;
    line-height: 1.3;
}

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

.intro-image {
    flex: 1;
}

.intro-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.services-preview {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s, transform 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
}

.card-image {
    height: 220px;
    overflow: hidden;
}

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

.card-content {
    padding: 24px;
}

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

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

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

.service-features li {
    font-size: 14px;
    color: #4b5563;
    padding: 6px 0;
    padding-left: 20px;
    position: relative;
}

.service-features li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #1a202c;
    font-weight: 700;
}

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 16px;
}

.btn-select-service {
    width: 100%;
    background-color: #1a202c;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

.btn-select-service:hover {
    background-color: #374151;
}

.contact-form-section {
    padding: 80px 0;
    background-color: #f9fafb;
}

.form-wrapper {
    max-width: 600px;
    margin: 0 auto;
}

.form-wrapper h2 {
    font-size: 32px;
    text-align: center;
    margin-bottom: 16px;
    color: #1a202c;
}

.form-intro {
    text-align: center;
    font-size: 17px;
    color: #6b7280;
    margin-bottom: 40px;
}

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

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

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

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

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

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

.btn-submit {
    width: 100%;
    background-color: #1a202c;
    color: #ffffff;
    border: none;
    padding: 16px 24px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.benefits-section {
    padding: 80px 0;
    background-color: #ffffff;
}

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

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

.benefit-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

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

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

.footer {
    background-color: #1a202c;
    color: #d1d5db;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    padding: 20px 0;
    border-top: 1px solid #374151;
    border-bottom: 1px solid #374151;
    margin-bottom: 20px;
}

.footer-disclaimer p {
    font-size: 12px;
    color: #9ca3af;
    line-height: 1.6;
}

.footer-bottom {
    text-align: center;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a202c;
    color: #ffffff;
    padding: 24px 0;
    z-index: 1000;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-banner.hidden {
    display: none;
}

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

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

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

.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-color 0.2s;
}

.cookie-btn.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

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

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

.page-header {
    background-color: #1a202c;
    color: #ffffff;
    padding: 60px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 12px;
}

.page-header p {
    font-size: 18px;
    color: #d1d5db;
}

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

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.about-grid.reverse {
    flex-direction: row-reverse;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.values-section {
    margin-top: 80px;
}

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

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

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

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

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

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

.cta-section {
    margin-top: 60px;
    text-align: center;
    padding: 40px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #1a202c;
}

.cta-section p {
    font-size: 17px;
    color: #6b7280;
}

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

.contact-layout {
    max-width: 800px;
    margin: 0 auto;
}

.contact-info-wrapper h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a202c;
}

.contact-block {
    margin-bottom: 40px;
}

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

.contact-block p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.8;
}

.email-display {
    font-weight: 600;
    color: #1a202c;
}

.info-note {
    font-size: 14px;
    color: #6b7280;
    font-style: italic;
    margin-top: 12px;
}

.visit-note {
    margin-top: 60px;
    padding: 30px;
    background-color: #f9fafb;
    border-radius: 8px;
    border-left: 4px solid #1a202c;
}

.visit-note h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a202c;
}

.visit-note p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

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

.thanks-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.thanks-content h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #10b981;
}

.thanks-message {
    font-size: 18px;
    color: #4b5563;
    margin-bottom: 40px;
}

.thanks-info {
    text-align: left;
    background-color: #f9fafb;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-info h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a202c;
}

.thanks-info p {
    font-size: 16px;
    color: #4b5563;
    margin-bottom: 16px;
}

.thanks-info ul {
    list-style: none;
    padding-left: 0;
}

.thanks-info ul li {
    font-size: 15px;
    color: #4b5563;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
}

.thanks-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: 700;
}

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

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

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

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

.btn-secondary {
    background-color: #f3f4f6;
    color: #1a202c;
    border: 1px solid #d1d5db;
}

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

.thanks-note {
    padding: 20px;
    background-color: #fef3c7;
    border-radius: 6px;
    border-left: 4px solid #f59e0b;
}

.thanks-note p {
    font-size: 14px;
    color: #78350f;
}

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

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

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

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

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

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

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

.legal-content ul li {
    font-size: 15px;
    color: #4b5563;
    margin-bottom: 8px;
    line-height: 1.7;
}

.legal-content a {
    color: #2563eb;
    text-decoration: none;
}

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

.legal-update {
    margin-top: 40px;
    font-size: 14px;
    color: #9ca3af;
    font-style: italic;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
}

.cookie-table th,
.cookie-table td {
    padding: 12px;
    text-align: left;
    border: 1px solid #d1d5db;
}

.cookie-table th {
    background-color: #f3f4f6;
    font-weight: 600;
    color: #1a202c;
}

.cookie-table td {
    font-size: 14px;
    color: #4b5563;
}

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

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

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

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

    .intro-grid,
    .about-grid {
        flex-direction: column;
    }

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

    .benefits-grid,
    .values-cards {
        flex-direction: column;
    }

    .benefit-card,
    .value-card {
        flex: 1 1 100%;
    }

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

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

    .thanks-actions {
        flex-direction: column;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        text-align: center;
    }
}