* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
}

.ad-disclosure {
    background-color: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px;
    font-size: 13px;
    border-bottom: 1px solid #ffeeba;
}

.nav-container {
    background-color: #1a1a2e;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-logo {
    color: #fff;
    font-size: 24px;
    font-weight: 600;
}

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

.nav-links a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}

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

.hero-card {
    margin: 0;
}

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

.hero-image img {
    display: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 26, 46, 0.7);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
}

.hero-overlay h1 {
    color: #fff;
    font-size: 48px;
    max-width: 800px;
    text-align: center;
    margin-bottom: 20px;
}

.hero-overlay p {
    color: #e0e0e0;
    font-size: 20px;
    max-width: 600px;
    text-align: center;
}

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

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

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.intro-card h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.intro-card p {
    font-size: 18px;
    line-height: 1.8;
    color: #555;
}

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

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

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

.service-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    width: calc(33.333% - 20px);
    min-width: 320px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

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

.card-content {
    padding: 30px;
}

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

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
}

.card-price {
    font-size: 22px;
    font-weight: 600;
    color: #4a9eff;
    margin-bottom: 20px;
}

.card-btn {
    width: 100%;
    padding: 14px;
    background-color: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.card-btn:hover {
    background-color: #4a9eff;
}

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

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

.form-card h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a1a2e;
    text-align: center;
}

.form-intro {
    text-align: center;
    margin-bottom: 35px;
    color: #666;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
}

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

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #1a1a2e;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.trust-card {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.trust-card h2 {
    color: #fff;
    font-size: 36px;
    margin-bottom: 25px;
}

.trust-card p {
    color: #e0e0e0;
    font-size: 18px;
    line-height: 1.8;
}

.footer {
    background-color: #0f0f1e;
    color: #fff;
    padding: 60px 0 30px;
}

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

.footer-col {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.footer-col a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #4a9eff;
}

.disclaimer {
    border-top: 1px solid #2a2a3e;
    padding-top: 30px;
    margin-top: 30px;
}

.disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #888;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    padding: 25px;
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.2);
    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: 30px;
    flex-wrap: wrap;
}

.cookie-content p {
    color: #fff;
    margin: 0;
    flex: 1;
}

.cookie-content a {
    color: #4a9eff;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-accept {
    background-color: #4a9eff;
    color: #fff;
}

.cookie-accept:hover {
    background-color: #3a8eef;
}

.cookie-reject {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

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

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
}

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

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

.thanks-card p {
    font-size: 18px;
    color: #666;
    line-height: 1.8;
    margin-bottom: 30px;
}

.thanks-link {
    display: inline-block;
    padding: 14px 40px;
    background-color: #1a1a2e;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    transition: background-color 0.3s;
}

.thanks-link:hover {
    background-color: #4a9eff;
}

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

.contact-card {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-card h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a2e;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 10px;
    color: #1a1a2e;
}

.contact-item p {
    font-size: 16px;
    color: #666;
    line-height: 1.6;
}

.legal-container {
    padding: 80px 20px;
    background-color: #fff;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 40px;
    color: #1a1a2e;
}

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

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

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

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

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 8px;
}

.about-hero {
    background-color: #1a1a2e;
    padding: 80px 0;
    text-align: center;
}

.about-hero h1 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

.about-hero p {
    color: #e0e0e0;
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

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

.about-card {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-bottom: 40px;
}

.about-card h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.about-card p {
    font-size: 17px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 15px;
}

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

.services-intro {
    text-align: center;
    margin-bottom: 60px;
}

.services-intro h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.services-intro p {
    font-size: 18px;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .nav-container {
        flex-direction: column;
        gap: 20px;
    }

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

    .service-card {
        width: 100%;
    }

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

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