* {
    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: #333;
    background-color: #fff;
}

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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    font-size: 13px;
    color: #666;
    border-bottom: 1px solid #e0e0e0;
}

.main-nav {
    background-color: #1a1a1a;
    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: #fff;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 40px;
}

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

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

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

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

.hero-section {
    display: flex;
    align-items: center;
    min-height: 600px;
    background-color: #f5f7fa;
    padding: 60px 20px;
}

.hero-content {
    flex: 1;
    padding-right: 60px;
    max-width: 600px;
    margin: 0 auto;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2563eb;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #1e40af;
}

.hero-image {
    flex: 1;
    max-width: 600px;
    margin: 0 auto;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e5e7eb;
}

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

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

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

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

.services-section {
    padding: 80px 20px;
    background-color: #f9fafb;
}

.services-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.section-subtitle {
    text-align: center;
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

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

.service-content {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.service-content h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 20px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

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

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

.trust-section {
    padding: 80px 20px;
    background-color: #fff;
}

.trust-content h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a1a1a;
}

.trust-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.trust-card {
    flex: 1 1 calc(33.333% - 30px);
    min-width: 280px;
    padding: 32px;
    background-color: #f9fafb;
    border-radius: 8px;
}

.trust-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.trust-card p {
    font-size: 16px;
    color: #555;
    line-height: 1.7;
}

.form-section {
    padding: 80px 20px;
    background-color: #1a1a1a;
    color: #fff;
}

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

.form-wrapper h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
}

.form-wrapper > p {
    text-align: center;
    font-size: 17px;
    color: #ccc;
    margin-bottom: 40px;
}

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

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

.form-group label {
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #e5e7eb;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 14px;
    border: 1px solid #444;
    border-radius: 6px;
    font-size: 16px;
    background-color: #2a2a2a;
    color: #fff;
    transition: border-color 0.3s;
}

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

.submit-btn {
    padding: 16px 32px;
    background-color: #2563eb;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.disclaimer-section {
    padding: 40px 20px;
    background-color: #f9fafb;
}

.disclaimer {
    max-width: 900px;
    margin: 0 auto;
    font-size: 14px;
    color: #666;
    text-align: center;
    line-height: 1.7;
}

.main-footer {
    background-color: #1a1a1a;
    color: #ccc;
    padding: 60px 20px 20px;
}

.footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 40px;
}

.footer-column {
    flex: 1 1 200px;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.8;
}

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

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

.footer-column ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: #4a9eff;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #fff;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
    padding: 24px;
    z-index: 9999;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #333;
}

.cookie-content a {
    color: #2563eb;
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 12px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #2563eb;
    color: #fff;
}

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

.cookie-btn.reject {
    background-color: #e5e7eb;
    color: #333;
}

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

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

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 20px;
    color: #555;
    margin-bottom: 32px;
    line-height: 1.6;
}

.thanks-service-info {
    background-color: #f9fafb;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-service-info h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.content-page {
    padding: 80px 20px;
    background-color: #fff;
}

.content-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a1a1a;
    text-align: center;
}

.content-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

.content-page h3 {
    font-size: 22px;
    margin-top: 28px;
    margin-bottom: 12px;
    color: #333;
}

.content-page p {
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: #555;
}

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

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

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

.contact-info {
    max-width: 800px;
    margin: 0 auto 60px;
    text-align: center;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.contact-details {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    max-width: 900px;
    margin: 0 auto;
    justify-content: center;
}

.contact-card {
    flex: 1 1 250px;
    padding: 32px;
    background-color: #f9fafb;
    border-radius: 8px;
    text-align: center;
}

.contact-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1a1a1a;
}

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

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

.about-header {
    text-align: center;
    margin-bottom: 60px;
}

.about-header h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.about-header p {
    font-size: 20px;
    color: #555;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.about-content {
    display: flex;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.about-text {
    flex: 1;
}

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

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

.about-image {
    flex: 1;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    background-color: #e5e7eb;
}

.services-list {
    max-width: 900px;
    margin: 60px auto;
}

.services-list h2 {
    font-size: 36px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a1a1a;
}

.service-item {
    background-color: #f9fafb;
    padding: 32px;
    margin-bottom: 24px;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.service-item h3 {
    font-size: 22px;
    margin-bottom: 8px;
    color: #1a1a1a;
}

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

.service-price-tag {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    white-space: nowrap;
    margin-left: 24px;
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: #1a1a1a;
        width: 100%;
        padding: 20px;
        transition: left 0.3s;
        gap: 20px;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        padding-right: 0;
        margin-bottom: 40px;
    }

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

    .services-grid {
        gap: 24px;
    }

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

    .trust-cards {
        gap: 24px;
    }

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

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

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

    .service-item {
        flex-direction: column;
        text-align: center;
    }

    .service-price-tag {
        margin-left: 0;
        margin-top: 16px;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 28px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .services-section h2,
    .trust-content h2 {
        font-size: 32px;
    }

    .intro-card h2 {
        font-size: 28px;
    }

    .form-wrapper h2 {
        font-size: 32px;
    }
}