* {
    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: #1a1a1a;
    background-color: #f8f9fa;
}

.header {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.2rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.brand {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2c5f8d;
}

.nav-items {
    display: flex;
    gap: 2rem;
    align-items: center;
    flex-wrap: wrap;
}

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

.nav-items a:hover {
    color: #2c5f8d;
}

.ad-label {
    font-size: 0.75rem;
    color: #666;
    padding: 0.3rem 0.8rem;
    background-color: #f0f0f0;
    border-radius: 4px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c5f8d;
    box-shadow: 0 -2px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    padding: 1.5rem 2rem;
}

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.btn-primary {
    padding: 0.7rem 1.8rem;
    background-color: #2c5f8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-primary:hover {
    background-color: #234a6d;
}

.btn-secondary {
    padding: 0.7rem 1.8rem;
    background-color: #6c757d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.hero-card {
    max-width: 1400px;
    margin: 3rem auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    overflow: hidden;
    display: flex;
    flex-wrap: wrap;
}

.hero-content {
    flex: 1;
    min-width: 350px;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #2c5f8d;
    color: #ffffff;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.cta-hero {
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2c5f8d;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    align-self: flex-start;
    transition: transform 0.3s ease;
}

.cta-hero:hover {
    transform: translateY(-2px);
}

.hero-image {
    flex: 1;
    min-width: 350px;
    background-color: #e9ecef;
}

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

.intro-cards {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
}

.card-row {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.info-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card img {
    width: 100%;
    height: 250px;
    display: block;
}

.card-text {
    padding: 1.8rem;
}

.card-text h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

.card-text p {
    font-size: 1rem;
    color: #555;
}

.services-preview {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.services-preview h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    max-width: 800px;
    margin: 0 auto 3rem;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
}

.service-header {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    background-color: #f8f9fa;
}

.service-header h3 {
    font-size: 1.3rem;
    color: #1a1a1a;
    flex: 1;
}

.price {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c5f8d;
    white-space: nowrap;
    margin-left: 1rem;
}

.service-card img {
    width: 100%;
    height: 220px;
    display: block;
}

.service-card p {
    padding: 1.5rem;
    font-size: 1rem;
    color: #555;
    flex: 1;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    padding: 0.9rem 1.5rem;
    background-color: #2c5f8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #234a6d;
}

.form-section {
    max-width: 800px;
    margin: 4rem auto;
    padding: 0 2rem;
}

.form-container {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.form-container h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.selected-service-display {
    font-size: 1.1rem;
    color: #2c5f8d;
    font-weight: 600;
    margin-bottom: 2rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

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

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #2c5f8d;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 3rem 2rem;
    background-color: #ffffff;
    border-radius: 10px;
}

.trust-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.trust-item {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-item h4 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

.trust-item p {
    color: #555;
}

.footer {
    background-color: #1a1a1a;
    color: #ffffff;
    margin-top: 4rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

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

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #cccccc;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 2rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    color: #999;
    font-size: 0.9rem;
}

.disclaimer {
    margin-top: 1rem;
    font-size: 0.85rem;
    line-height: 1.5;
}

.page-hero {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 3rem 2rem;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

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

.about-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.content-block {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.content-block.reverse {
    flex-direction: row-reverse;
}

.content-block img {
    flex: 1;
    min-width: 350px;
    border-radius: 10px;
}

.text-content {
    flex: 1;
    min-width: 350px;
}

.text-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.text-content p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.values-section {
    margin: 4rem 0;
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    border-radius: 10px;
}

.values-section h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.values-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.value-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

.value-card p {
    color: #555;
}

.cta-section {
    max-width: 1400px;
    margin: 4rem auto;
    padding: 4rem 2rem;
    background-color: #2c5f8d;
    border-radius: 10px;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.cta-button {
    padding: 1rem 2.5rem;
    background-color: #ffffff;
    color: #2c5f8d;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
}

.services-detailed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.service-detail-card {
    background-color: #ffffff;
    border-radius: 10px;
    padding: 2.5rem;
    margin-bottom: 3rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.service-detail-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.service-detail-header h2 {
    font-size: 1.8rem;
    color: #1a1a1a;
    flex: 1;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: #2c5f8d;
}

.service-detail-card img {
    width: 100%;
    height: 400px;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.service-description p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.service-description h3 {
    font-size: 1.4rem;
    margin: 2rem 0 1rem;
    color: #2c5f8d;
}

.service-description ul {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.service-description ul li {
    margin-bottom: 0.7rem;
    color: #555;
}

.contact-layout {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    flex-wrap: wrap;
}

.contact-info-card {
    flex: 1;
    min-width: 350px;
    background-color: #ffffff;
    border-radius: 10px;
    padding: 3rem;
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.contact-item {
    margin-bottom: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2c5f8d;
}

.contact-item p {
    color: #555;
    line-height: 1.8;
}

.email-display {
    color: #1a1a1a;
    font-weight: 600;
}

.contact-image {
    flex: 1;
    min-width: 350px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
}

.contact-additional {
    max-width: 1400px;
    margin: 0 auto 4rem;
    padding: 3rem 2rem;
}

.contact-additional h2 {
    font-size: 2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.help-grid {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.help-item {
    flex: 1;
    min-width: 280px;
    padding: 2rem;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.help-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

.help-item p {
    color: #555;
}

.thanks-hero {
    max-width: 1400px;
    margin: 3rem auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
    flex-wrap: wrap;
}

.thanks-content {
    flex: 1;
    min-width: 350px;
}

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

.lead {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    color: #555;
}

.confirmation-box {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 2rem;
    margin-bottom: 2rem;
}

.confirmation-box h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.confirmation-box p {
    margin-bottom: 1rem;
    color: #555;
}

.next-steps {
    margin-top: 1.5rem;
    padding-left: 1.5rem;
}

.next-steps li {
    margin-bottom: 0.8rem;
    color: #555;
}

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

.thanks-image {
    flex: 1;
    min-width: 350px;
    background-color: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.thanks-image img {
    width: 100%;
    height: 100%;
}

.legal-page {
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
}

.legal-page h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.updated {
    font-size: 0.9rem;
    color: #888;
    margin-bottom: 3rem;
}

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

.legal-section h2 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #2c5f8d;
}

.legal-section h3 {
    font-size: 1.3rem;
    margin: 1.5rem 0 0.8rem;
    color: #1a1a1a;
}

.legal-section p {
    margin-bottom: 1rem;
    color: #555;
    line-height: 1.8;
}

.legal-section ul,
.legal-section ol {
    margin: 1rem 0 1rem 2rem;
}

.legal-section li {
    margin-bottom: 0.7rem;
    color: #555;
    line-height: 1.8;
}

.legal-section a {
    color: #2c5f8d;
    text-decoration: none;
}

.legal-section a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-items {
        gap: 1rem;
    }

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

    .services-preview h2,
    .page-hero h1 {
        font-size: 2rem;
    }

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

    .form-container {
        padding: 2rem;
    }
}