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

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

.ad-disclosure {
    background-color: #ffc107;
    color: #000;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

.nav-menu a:hover {
    color: #3498db;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background-color: #2c3e50;
    margin: 3px 0;
    transition: 0.3s;
}

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

.hero-image-wrapper {
    position: relative;
    height: 600px;
    overflow: hidden;
    background-color: #34495e;
}

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

.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85), transparent);
    color: #fff;
    padding: 60px 40px;
}

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

.hero-overlay p {
    font-size: 20px;
    max-width: 700px;
    line-height: 1.7;
}

.intro-cards {
    padding: 80px 0;
    background-color: #fff;
}

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

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.card-icon {
    width: 100%;
    height: 220px;
    background-color: #e9ecef;
    overflow: hidden;
}

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

.info-card h3 {
    padding: 25px 25px 15px;
    font-size: 22px;
    color: #2c3e50;
}

.info-card p {
    padding: 0 25px 25px;
    color: #555;
    line-height: 1.7;
}

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

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

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

.service-card {
    flex: 1 1 calc(50% - 18px);
    min-width: 320px;
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 280px;
    background-color: #dee2e6;
    overflow: hidden;
}

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

.service-content {
    padding: 30px;
}

.service-content h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 20px;
}

.select-service-btn {
    width: 100%;
    padding: 15px;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

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

.form-card {
    max-width: 700px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.form-card h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.form-card > p {
    margin-bottom: 35px;
    color: #555;
    font-size: 16px;
}

.service-form .form-group {
    margin-bottom: 25px;
}

.service-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.service-form input,
.service-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #dee2e6;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.service-form input:focus,
.service-form textarea:focus {
    outline: none;
    border-color: #3498db;
}

.service-form textarea {
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #27ae60;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 80px 0;
    background-color: #2c3e50;
    color: #fff;
}

.trust-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
}

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

.trust-card {
    flex: 1 1 calc(50% - 15px);
    min-width: 280px;
    background-color: rgba(255,255,255,0.1);
    padding: 35px;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}

.trust-card h4 {
    font-size: 24px;
    margin-bottom: 15px;
}

.trust-card p {
    line-height: 1.7;
    opacity: 0.9;
}

.main-footer {
    background-color: #1a252f;
    color: #ecf0f1;
    padding: 60px 0 30px;
}

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

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-col p {
    line-height: 1.7;
    opacity: 0.8;
}

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

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

.footer-col a {
    color: #ecf0f1;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col a:hover {
    opacity: 1;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 15px;
    opacity: 0.7;
    font-size: 14px;
}

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    max-width: 900px;
    margin: 20px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 25px 20px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
    z-index: 2000;
    display: none;
}

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

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.cookie-btn.accept {
    background-color: #27ae60;
    color: #fff;
}

.cookie-btn.reject {
    background-color: #e74c3c;
    color: #fff;
}

.cookie-link {
    color: #3498db;
    text-decoration: none;
    font-size: 14px;
    white-space: nowrap;
}

.cookie-link:hover {
    text-decoration: underline;
}

.thanks-page {
    min-height: calc(100vh - 300px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

.thanks-card {
    max-width: 600px;
    background-color: #fff;
    padding: 60px 50px;
    border-radius: 12px;
    box-shadow: 0 4px 30px rgba(0,0,0,0.1);
    text-align: center;
}

.thanks-card h1 {
    font-size: 42px;
    color: #27ae60;
    margin-bottom: 25px;
}

.thanks-card p {
    font-size: 18px;
    color: #555;
    line-height: 1.7;
    margin-bottom: 15px;
}

.thanks-card .selected-service-info {
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 8px;
    margin: 30px 0;
}

.thanks-card .back-link {
    display: inline-block;
    margin-top: 30px;
    padding: 14px 35px;
    background-color: #3498db;
    color: #fff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.thanks-card .back-link:hover {
    background-color: #2980b9;
}

.about-hero {
    padding: 100px 0 80px;
    background-color: #34495e;
    color: #fff;
    text-align: center;
}

.about-hero h1 {
    font-size: 52px;
    margin-bottom: 25px;
}

.about-hero p {
    font-size: 20px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
    opacity: 0.9;
}

.about-content {
    padding: 80px 0;
    background-color: #fff;
}

.about-section {
    max-width: 900px;
    margin: 0 auto 60px;
}

.about-section h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.about-section p {
    font-size: 17px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.about-section ul {
    list-style: none;
    padding-left: 0;
}

.about-section ul li {
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 17px;
    line-height: 1.7;
    color: #555;
}

.about-section ul li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.contact-page {
    padding: 80px 0;
    background-color: #f8f9fa;
    min-height: calc(100vh - 300px);
}

.contact-container {
    max-width: 900px;
    margin: 0 auto;
}

.contact-container h1 {
    font-size: 46px;
    margin-bottom: 40px;
    color: #2c3e50;
    text-align: center;
}

.contact-info-card {
    background-color: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.contact-item {
    margin-bottom: 35px;
    padding-bottom: 35px;
    border-bottom: 1px solid #e9ecef;
}

.contact-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.contact-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.contact-item p {
    font-size: 17px;
    color: #555;
    line-height: 1.7;
}

.legal-page {
    padding: 80px 0;
    background-color: #fff;
    min-height: calc(100vh - 300px);
}

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

.legal-container h1 {
    font-size: 46px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.legal-container .last-updated {
    color: #7f8c8d;
    margin-bottom: 50px;
    font-size: 15px;
}

.legal-container h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #2c3e50;
}

.legal-container h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #34495e;
}

.legal-container p {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
}

.legal-container ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-container ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #555;
    margin-bottom: 10px;
}

@media (max-width: 768px) {
    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        right: 0;
        background-color: #fff;
        flex-direction: column;
        gap: 0;
        padding: 20px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-menu li {
        padding: 15px 0;
        border-bottom: 1px solid #e9ecef;
    }

    .nav-toggle {
        display: flex;
    }

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

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

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

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

    .footer-grid {
        flex-direction: column;
        gap: 35px;
    }

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

    .form-card {
        padding: 35px 25px;
    }
}