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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2d3748;
    color: #ffffff;
    padding: 20px;
    display: none;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

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

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

.cookie-content p {
    margin: 0;
    flex: 1;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background-color: #48bb78;
    color: #ffffff;
}

.btn-accept:hover {
    background-color: #38a169;
}

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

.btn-reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e2e8f0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

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

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

.ad-label {
    font-size: 12px;
    color: #718096;
    border: 1px solid #cbd5e0;
    padding: 4px 12px;
    border-radius: 4px;
    background-color: #f7fafc;
}

.hero-section {
    margin-top: 0;
}

.hero-card {
    position: relative;
    height: 600px;
    overflow: hidden;
    border-radius: 0;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.6));
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 40px;
    color: #ffffff;
}

.hero-overlay h1 {
    font-size: 56px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 800px;
}

.hero-overlay p {
    font-size: 20px;
    margin-bottom: 32px;
    max-width: 600px;
}

.cta-button {
    display: inline-block;
    background-color: #48bb78;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #38a169;
}

.intro-cards {
    padding: 80px 0;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    padding: 32px;
    border-radius: 8px;
}

.info-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3748;
}

.info-card p {
    color: #4a5568;
    line-height: 1.7;
}

.services-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.services-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d3748;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

.service-content p {
    color: #4a5568;
    margin-bottom: 16px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2d3748;
    margin: 20px 0;
}

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

.select-service:hover {
    background-color: #1a202c;
}

.select-service.selected {
    background-color: #48bb78;
}

.select-service.selected:hover {
    background-color: #38a169;
}

.contact-form-section {
    padding: 80px 0;
}

.form-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 48px;
    border-radius: 12px;
}

.form-card h2 {
    font-size: 36px;
    margin-bottom: 12px;
    text-align: center;
    color: #2d3748;
}

.form-card > p {
    text-align: center;
    color: #4a5568;
    margin-bottom: 32px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: #2d3748;
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

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

.service-display {
    padding: 20px;
    background-color: #e6fffa;
    border-radius: 6px;
    margin: 12px 0;
    display: none;
}

.service-display.visible {
    display: block;
}

.service-display p {
    margin: 0;
    color: #2d3748;
    font-weight: 500;
}

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

.submit-button:hover {
    background-color: #38a169;
}

.submit-button:disabled {
    background-color: #cbd5e0;
    cursor: not-allowed;
}

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

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

.trust-card {
    flex: 1;
    min-width: 300px;
    padding: 36px;
    border-radius: 8px;
}

.trust-card h4 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2d3748;
}

.trust-card p {
    color: #4a5568;
    line-height: 1.7;
}

.main-footer {
    background-color: #2d3748;
    color: #ffffff;
    padding: 60px 0 30px;
}

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

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

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

.footer-section p {
    color: #cbd5e0;
    line-height: 1.6;
}

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

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

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

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

.footer-disclaimer {
    padding-top: 30px;
    border-top: 1px solid #4a5568;
    color: #cbd5e0;
    font-size: 14px;
    line-height: 1.6;
}

.page-header {
    padding: 80px 0 40px;
    text-align: center;
    background-color: #f7fafc;
}

.page-header h1 {
    font-size: 48px;
    color: #2d3748;
    margin-bottom: 12px;
}

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

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

.about-grid {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.about-card {
    display: flex;
    gap: 48px;
    align-items: center;
    padding: 48px;
    border-radius: 12px;
    flex-wrap: wrap;
}

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

.about-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
    min-width: 300px;
}

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

.about-text p {
    color: #4a5568;
    line-height: 1.8;
    margin-bottom: 16px;
}

.values-section {
    padding: 80px 0;
    background-color: #f7fafc;
}

.values-section h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: #2d3748;
}

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

.value-card {
    flex: 1;
    min-width: 280px;
    padding: 36px;
    border-radius: 8px;
}

.value-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #2d3748;
}

.value-card p {
    color: #4a5568;
    line-height: 1.7;
}

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

.cta-card {
    text-align: center;
    padding: 80px 40px;
    border-radius: 12px;
    color: #ffffff;
}

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

.cta-card p {
    font-size: 18px;
    margin-bottom: 32px;
}

.services-detail {
    padding: 60px 0;
}

.service-detail-card {
    display: flex;
    gap: 48px;
    align-items: flex-start;
    padding: 48px;
    border-radius: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: #2d3748;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #48bb78;
    margin: 16px 0;
}

.service-detail-content h3 {
    font-size: 20px;
    margin: 24px 0 12px;
    color: #2d3748;
}

.service-detail-content p {
    color: #4a5568;
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-detail-content ul {
    list-style: none;
    padding-left: 0;
}

.service-detail-content ul li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
    color: #4a5568;
    line-height: 1.6;
}

.service-detail-content ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #48bb78;
    font-weight: 700;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 400px;
}

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

.contact-layout {
    display: flex;
    justify-content: center;
}

.contact-info-card {
    max-width: 600px;
    width: 100%;
    padding: 48px;
    border-radius: 12px;
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #2d3748;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #2d3748;
    font-weight: 600;
}

.contact-item p {
    color: #4a5568;
    line-height: 1.7;
}

.additional-info {
    padding: 60px 0;
}

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

.thanks-page {
    padding: 100px 0;
    min-height: 60vh;
}

.thanks-card {
    max-width: 700px;
    margin: 0 auto;
    padding: 60px;
    border-radius: 12px;
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

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

.thanks-message {
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-confirmation {
    background-color: #e6fffa;
    padding: 20px;
    border-radius: 8px;
    margin: 24px 0;
    font-weight: 500;
    color: #2d3748;
}

.thanks-info {
    color: #4a5568;
    margin-bottom: 40px;
    line-height: 1.7;
}

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

.btn-primary {
    padding: 14px 32px;
    background-color: #48bb78;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.btn-secondary {
    padding: 14px 32px;
    background-color: #2d3748;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

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

.legal-page {
    padding: 60px 0;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #2d3748;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #2d3748;
}

.legal-content h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #2d3748;
}

.legal-content h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2d3748;
}

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

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

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

.legal-content a {
    color: #48bb78;
    text-decoration: none;
}

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

@media (max-width: 768px) {
    .nav-links {
        flex-wrap: wrap;
        gap: 16px;
        font-size: 14px;
    }

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

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

    .card-grid,
    .services-grid,
    .trust-grid,
    .values-grid {
        flex-direction: column;
    }

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

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

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

    .thanks-card {
        padding: 40px 20px;
    }

    .thanks-actions {
        flex-direction: column;
        width: 100%;
    }

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