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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, 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: #fff3cd;
    color: #856404;
    text-align: center;
    padding: 8px 20px;
    font-size: 14px;
    border-bottom: 1px solid #ffeeba;
}

.main-nav {
    background-color: #1a252f;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

.logo {
    color: #ffffff;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: -0.5px;
}

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

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

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

.hero-card {
    background-color: #ffffff;
    margin: 40px auto;
    max-width: 1200px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.hero-content {
    padding: 60px 50px;
}

.hero-content h1 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 20px;
    line-height: 1.3;
}

.hero-content p {
    font-size: 18px;
    color: #5a6c7d;
    line-height: 1.7;
}

.hero-image {
    width: 100%;
    height: 500px;
    background-color: #e9ecef;
}

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

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

.intro-card {
    background-color: #ffffff;
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0,0,0,0.06);
    max-width: 900px;
    margin: 0 auto;
}

.intro-card h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 25px;
    line-height: 1.4;
}

.intro-card p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
}

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

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

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

.service-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    width: calc(33.333% - 20px);
    min-width: 320px;
    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 30px rgba(0,0,0,0.12);
}

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

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

.card-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

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

.card-content p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
    flex-grow: 1;
    margin-bottom: 20px;
}

.price-tag {
    font-size: 28px;
    color: #2c5aa0;
    font-weight: 700;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #2c5aa0;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
    background-color: #1e3f75;
    transform: scale(1.02);
}

.cta-button-secondary {
    background-color: #6c757d;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    transition: background-color 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #545b62;
}

.select-service {
    width: 100%;
}

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

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

.form-card h2 {
    font-size: 32px;
    color: #1a252f;
    margin-bottom: 15px;
}

.form-card > p {
    font-size: 16px;
    color: #5a6c7d;
    margin-bottom: 30px;
}

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

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

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

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

.form-group input[readonly] {
    background-color: #e9ecef;
}

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

.trust-card {
    max-width: 1100px;
    margin: 0 auto;
}

.trust-card h2 {
    font-size: 36px;
    color: #1a252f;
    text-align: center;
    margin-bottom: 50px;
}

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

.benefit-item {
    background-color: #f8f9fa;
    padding: 35px;
    border-radius: 10px;
    width: calc(50% - 15px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.benefit-item h4 {
    font-size: 20px;
    color: #1a252f;
    margin-bottom: 12px;
}

.benefit-item p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

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

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

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

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

.footer-col p {
    font-size: 14px;
    color: #b0b8c1;
    line-height: 1.6;
}

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

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

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

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

.disclaimer {
    background-color: #0f1821;
    padding: 30px;
    border-radius: 8px;
    margin-top: 40px;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a252f;
    color: #e8eaed;
    padding: 25px;
    box-shadow: 0 -2px 20px 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;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
    font-size: 14px;
    line-height: 1.6;
}

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

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

.cookie-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cookie-btn.accept {
    background-color: #2c5aa0;
    color: #ffffff;
}

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

.cookie-btn.reject {
    background-color: #6c757d;
    color: #ffffff;
}

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

.page-header {
    background-color: #1a252f;
    color: #ffffff;
    padding: 80px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 15px;
}

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

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

.service-detail-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
}

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

.detail-image {
    width: 45%;
    min-width: 300px;
    flex: 1;
    background-color: #e9ecef;
}

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

.detail-content {
    width: 55%;
    min-width: 300px;
    flex: 1;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.detail-content h2 {
    font-size: 30px;
    color: #1a252f;
    margin-bottom: 20px;
}

.price-highlight {
    font-size: 32px;
    color: #2c5aa0;
    font-weight: 700;
    margin-bottom: 20px;
}

.detail-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 25px;
}

.feature-list {
    list-style: none;
    margin-bottom: 30px;
}

.feature-list li {
    font-size: 15px;
    color: #2c3e50;
    padding-left: 25px;
    margin-bottom: 12px;
    position: relative;
    line-height: 1.6;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
}

.about-hero {
    background-color: #ffffff;
    padding: 80px 0;
}

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

.about-intro-card h1 {
    font-size: 42px;
    color: #1a252f;
    margin-bottom: 25px;
}

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

.about-story {
    padding: 80px 0;
    background-color: #f8f9fa;
}

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

.story-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    display: flex;
    flex-wrap: wrap;
}

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

.story-card img {
    width: 40%;
    min-width: 300px;
    height: 400px;
    object-fit: cover;
    background-color: #e9ecef;
}

.story-content {
    width: 60%;
    min-width: 300px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h2 {
    font-size: 30px;
    color: #1a252f;
    margin-bottom: 20px;
}

.story-content p {
    font-size: 16px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.values-section h2 {
    font-size: 36px;
    color: #1a252f;
    text-align: center;
    margin-bottom: 50px;
}

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

.value-card {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 10px;
    width: calc(50% - 15px);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 22px;
    color: #1a252f;
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.contact-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.contact-card h1 {
    font-size: 38px;
    color: #1a252f;
    margin-bottom: 15px;
}

.contact-card > p {
    font-size: 17px;
    color: #5a6c7d;
    margin-bottom: 50px;
}

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

.contact-info-block {
    flex: 1;
    min-width: 250px;
}

.contact-info-block h3 {
    font-size: 20px;
    color: #1a252f;
    margin-bottom: 15px;
}

.contact-info-block p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-info-block .note {
    font-size: 13px;
    color: #868e96;
    font-style: italic;
    margin-top: 8px;
}

.contact-note {
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.contact-note h3 {
    font-size: 20px;
    color: #1a252f;
    margin-bottom: 15px;
}

.contact-note p {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
}

.contact-note a {
    color: #2c5aa0;
    text-decoration: none;
}

.contact-note a:hover {
    text-decoration: underline;
}

.thanks-section {
    padding: 100px 0;
    background-color: #f8f9fa;
    min-height: 70vh;
}

.thanks-card {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #28a745;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 30px;
}

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

.thanks-message {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 30px;
}

.service-confirmation {
    background-color: #d1ecf1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.selected-service-info {
    font-size: 16px;
    color: #0c5460;
}

.next-steps {
    text-align: left;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.next-steps h3 {
    font-size: 22px;
    color: #1a252f;
    margin-bottom: 20px;
}

.next-steps ul {
    list-style: none;
}

.next-steps ul li {
    font-size: 15px;
    color: #5a6c7d;
    padding-left: 30px;
    margin-bottom: 15px;
    position: relative;
    line-height: 1.7;
}

.next-steps ul li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #2c5aa0;
    font-weight: 700;
}

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

.legal-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.legal-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 12px;
    box-shadow: 0 3px 20px rgba(0,0,0,0.08);
    max-width: 1000px;
    margin: 0 auto;
}

.legal-intro {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 40px;
}

.legal-content h1 {
    font-size: 36px;
    color: #1a252f;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 24px;
    color: #1a252f;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content h3 {
    font-size: 20px;
    color: #2c3e50;
    margin-top: 30px;
    margin-bottom: 15px;
}

.legal-content h4 {
    font-size: 18px;
    color: #2c3e50;
    margin-top: 25px;
    margin-bottom: 12px;
}

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

.legal-content ul,
.legal-content ol {
    margin-bottom: 20px;
    margin-left: 30px;
}

.legal-content ul li,
.legal-content ol li {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.8;
    margin-bottom: 10px;
}

.legal-date {
    font-size: 14px;
    color: #868e96;
    font-style: italic;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid #e9ecef;
}

.cookies-table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.cookies-table thead {
    background-color: #f8f9fa;
}

.cookies-table th {
    padding: 15px;
    text-align: left;
    font-size: 14px;
    color: #1a252f;
    font-weight: 600;
    border-bottom: 2px solid #dee2e6;
}

.cookies-table td {
    padding: 15px;
    font-size: 14px;
    color: #5a6c7d;
    border-bottom: 1px solid #e9ecef;
}

@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
    }

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

    .hero-content {
        padding: 40px 30px;
    }

    .section-title {
        font-size: 28px;
    }

    .service-card {
        width: 100%;
        min-width: auto;
    }

    .form-card {
        padding: 30px;
    }

    .benefit-item {
        width: 100%;
    }

    .value-card {
        width: 100%;
    }

    .detail-image,
    .detail-content {
        width: 100%;
    }

    .story-card img,
    .story-content {
        width: 100%;
    }

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

    .contact-card {
        padding: 40px 30px;
    }

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

    .legal-content {
        padding: 40px 30px;
    }
}