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

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

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 0;
    flex-wrap: wrap;
}

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

.ad-label {
    font-size: 0.75rem;
    color: #7f8c9a;
    background-color: #f5f7fa;
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    margin: 0 1rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

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

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

.hero-split {
    display: flex;
    min-height: 600px;
    flex-wrap: wrap;
}

.hero-left,
.hero-right {
    flex: 1;
    min-width: 300px;
}

.hero-left {
    display: flex;
    align-items: center;
    padding: 3rem;
    background-color: #f8fafb;
}

.hero-text-content {
    max-width: 550px;
}

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

.hero-intro {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background-color: #3498db;
    color: #ffffff;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.cta-primary:hover {
    background-color: #2980b9;
}

.hero-right {
    position: relative;
    overflow: hidden;
}

.hero-right img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-split {
    padding: 5rem 0;
    background-color: #ffffff;
}

.split-container {
    display: flex;
    gap: 3rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    flex-wrap: wrap;
}

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

.split-image,
.split-content {
    flex: 1;
    min-width: 300px;
}

.split-image {
    overflow: hidden;
    border-radius: 8px;
}

.split-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.split-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
    line-height: 1.3;
}

.split-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.services-overview {
    padding: 5rem 0;
    background-color: #f8fafb;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #1a2332;
}

.services-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 280px;
    max-width: 380px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.service-icon {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.service-icon img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.4rem;
    color: #1a2332;
}

.service-card p {
    padding: 0 1.5rem;
    color: #5a6c7d;
    font-size: 0.95rem;
    flex-grow: 1;
}

.service-price {
    padding: 1rem 1.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: #3498db;
}

.service-select {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 1rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    width: 100%;
}

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

.form-split {
    padding: 5rem 0;
    background-color: #ffffff;
}

.service-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select {
    padding: 0.9rem;
    border: 1px solid #d0d7de;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

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

.btn-submit {
    background-color: #3498db;
    color: #ffffff;
    border: none;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    padding: 5rem 0;
    background-color: #1a2332;
    color: #ffffff;
}

.trust-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #ffffff;
}

.trust-grid {
    display: flex;
    gap: 2.5rem;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1 1 calc(50% - 2.5rem);
    min-width: 250px;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: #3498db;
}

.trust-item p {
    color: #b8c5d0;
    line-height: 1.6;
}

.main-footer {
    background-color: #0f1419;
    color: #a0aec0;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: flex;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

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

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

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 0.6rem;
}

.footer-links a {
    color: #a0aec0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #3498db;
}

.footer-disclaimer {
    background-color: #1a2332;
    padding: 1.5rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.footer-disclaimer p {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #a0aec0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #2a3441;
    font-size: 0.9rem;
}

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

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

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

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

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

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

.btn-accept {
    background-color: #3498db;
    color: #ffffff;
}

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

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

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 0;
}

.thanks-box {
    background-color: #f8fafb;
    padding: 3rem;
    border-radius: 8px;
    max-width: 600px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.thanks-box h1 {
    color: #1a2332;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.thanks-box p {
    color: #5a6c7d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.thanks-service {
    background-color: #e8f4fd;
    padding: 1rem;
    border-radius: 6px;
    margin-bottom: 2rem;
}

.thanks-service strong {
    color: #3498db;
}

.contact-page {
    padding: 5rem 0;
}

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

.contact-info h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #1a2332;
}

.info-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-item {
    background-color: #f8fafb;
    padding: 1.5rem;
    border-radius: 8px;
}

.info-item h3 {
    color: #1a2332;
    margin-bottom: 0.8rem;
}

.info-item p {
    color: #5a6c7d;
    line-height: 1.6;
}

.about-page {
    padding: 5rem 0;
}

.about-hero {
    text-align: center;
    margin-bottom: 4rem;
}

.about-hero h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a2332;
}

.about-hero p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-section {
    margin-bottom: 3rem;
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

.about-section p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.services-page {
    padding: 5rem 0;
}

.services-detail {
    max-width: 1000px;
    margin: 0 auto;
}

.services-detail h1 {
    font-size: 2.8rem;
    margin-bottom: 2rem;
    color: #1a2332;
    text-align: center;
}

.service-detail-card {
    background-color: #f8fafb;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.service-detail-info {
    flex: 1;
    min-width: 250px;
}

.service-detail-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.8rem;
    color: #1a2332;
}

.service-detail-info p {
    color: #5a6c7d;
    line-height: 1.6;
}

.service-detail-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #3498db;
}

.legal-page {
    padding: 5rem 0;
}

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

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

.legal-content h2 {
    font-size: 1.8rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a2332;
}

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

.legal-content p,
.legal-content li {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-content ul {
    margin-left: 2rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        gap: 1rem;
    }

    .nav-menu {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .section-title {
        font-size: 2rem;
    }

    .split-container {
        flex-direction: column;
    }

    .split-container.reverse {
        flex-direction: column;
    }

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

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

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
}