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

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

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

.header {
    background-color: #fff;
    border-bottom: 1px solid #e5e5e5;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5f7a;
}

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

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

.nav a:hover {
    color: #1a5f7a;
}

.ad-label {
    font-size: 12px;
    color: #666;
    background-color: #f5f5f5;
    padding: 5px 10px;
    border-radius: 4px;
}

.hero {
    background-image: url('https://images.unsplash.com/photo-1497366754035-f200968a6e72?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-color: #1a5f7a;
    min-height: 500px;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-overlay {
    background: rgba(26, 95, 122, 0.85);
    width: 100%;
    padding: 80px 0;
}

.hero-text {
    color: #fff;
    max-width: 700px;
}

.hero-text h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.95;
}

.btn-primary {
    display: inline-block;
    background-color: #fff;
    color: #1a5f7a;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a5f7a;
    padding: 14px 32px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    border: 2px solid #1a5f7a;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #1a5f7a;
    color: #fff;
}

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

.intro h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a5f7a;
}

.intro p {
    font-size: 18px;
    margin-bottom: 20px;
}

.benefits {
    padding: 80px 0;
}

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

.benefit-card {
    flex: 1;
    min-width: 300px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.benefit-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

.benefit-card h3 {
    padding: 20px 20px 10px;
    font-size: 22px;
    color: #1a5f7a;
}

.benefit-card p {
    padding: 0 20px 20px;
    color: #666;
}

.how-it-works {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.split-layout {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

.split-text {
    flex: 1;
    min-width: 300px;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.split-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

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

.services-pricing h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a5f7a;
}

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

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

.pricing-card {
    flex: 0 1 350px;
    background-color: #fff;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    padding: 30px;
    transition: all 0.3s;
}

.pricing-card:hover {
    border-color: #1a5f7a;
    box-shadow: 0 4px 20px rgba(26, 95, 122, 0.15);
}

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

.pricing-card > p {
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    min-height: 60px;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #1a5f7a;
    margin: 20px 0;
}

.features {
    list-style: none;
    margin-bottom: 25px;
}

.features li {
    padding: 8px 0;
    color: #555;
    position: relative;
    padding-left: 25px;
}

.features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

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

.btn-select:hover {
    background-color: #145270;
    transform: translateY(-2px);
}

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

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 15px;
    color: #1a5f7a;
}

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

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

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

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

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

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

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

.btn-submit:hover {
    background-color: #145270;
    transform: translateY(-2px);
}

.trust {
    padding: 80px 0;
}

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

.trust-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.trust-item {
    flex: 1;
    min-width: 280px;
}

.trust-item h4 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.trust-item p {
    font-size: 16px;
    color: #666;
}

.footer {
    background-color: #2c3e50;
    color: #fff;
    padding: 60px 0 20px;
}

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

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

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

.footer-col p {
    color: #bbb;
    font-size: 14px;
}

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

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

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

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

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #bbb;
    font-size: 14px;
}

.disclaimer {
    margin-top: 15px;
    font-size: 12px;
    opacity: 0.8;
}

.page-header {
    background-color: #1a5f7a;
    color: #fff;
    padding: 60px 0;
    text-align: center;
}

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

.page-header p {
    font-size: 18px;
    opacity: 0.9;
}

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

.about-intro p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.mission {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.split-reverse {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.values {
    padding: 80px 0;
}

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

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

.value-card {
    flex: 1;
    min-width: 250px;
    padding: 30px;
    background-color: #f9f9f9;
    border-radius: 8px;
}

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

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

.team {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.team h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #1a5f7a;
}

.team p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #555;
}

.approach {
    padding: 80px 0;
}

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

.approach-steps {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.step {
    flex: 1;
    min-width: 250px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a5f7a;
    opacity: 0.3;
    margin-bottom: 10px;
}

.step h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a5f7a;
}

.step p {
    color: #666;
}

.cta-section {
    padding: 80px 0;
    background-color: #1a5f7a;
    text-align: center;
    color: #fff;
}

.cta-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 30px;
}

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

.service-block {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

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

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

.service-content h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.service-content > p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 25px;
}

.service-features li {
    padding: 10px 0;
    color: #555;
    position: relative;
    padding-left: 30px;
}

.service-features li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: #1a5f7a;
    font-weight: 700;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #1a5f7a;
    margin: 25px 0;
}

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

.contact-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    flex-wrap: wrap;
}

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

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #1a5f7a;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1a5f7a;
}

.info-item p {
    font-size: 16px;
    color: #555;
}

.info-note {
    margin-top: 40px;
    padding: 20px;
    background-color: #f9f9f9;
    border-left: 4px solid #1a5f7a;
}

.info-note p {
    font-size: 15px;
    color: #666;
}

.contact-image {
    flex: 1;
    min-width: 300px;
    border-radius: 8px;
    overflow: hidden;
}

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

.location {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.location h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a5f7a;
}

.location p {
    font-size: 17px;
    margin-bottom: 15px;
    color: #555;
}

.thanks-content {
    padding: 100px 0;
}

.thanks-box {
    text-align: center;
    background-color: #f9f9f9;
    padding: 60px 40px;
    border-radius: 8px;
}

.thanks-box h1 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a5f7a;
}

.thanks-box p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #555;
}

.thanks-info {
    background-color: #fff;
    padding: 20px;
    margin: 30px 0;
    border-radius: 6px;
    border-left: 4px solid #1a5f7a;
}

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

.legal-content {
    padding: 60px 0;
}

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

.legal-intro {
    font-size: 17px;
    margin-bottom: 40px;
    color: #666;
}

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

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

.legal-content p {
    margin-bottom: 15px;
    color: #555;
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 20px;
    margin-left: 25px;
}

.legal-content ul li {
    margin-bottom: 10px;
    color: #555;
    line-height: 1.8;
}

.legal-content a {
    color: #1a5f7a;
    text-decoration: underline;
}

.legal-update {
    margin-top: 50px;
    font-style: italic;
    color: #999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 20px;
    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;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 15px;
}

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

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

.btn-cookie.accept {
    background-color: #1a5f7a;
    color: #fff;
}

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

.btn-cookie.reject {
    background-color: #666;
    color: #fff;
}

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

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 32px;
    }

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

    .nav {
        width: 100%;
    }

    .benefits-grid,
    .pricing-grid,
    .trust-grid,
    .values-grid,
    .approach-steps {
        flex-direction: column;
    }

    .split-layout,
    .split-reverse,
    .service-block {
        flex-direction: column;
    }

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