* {
    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: #2c3e50;
    background-color: #ffffff;
}

.navigation {
    background-color: #ffffff;
    border-bottom: 1px solid #e1e8ed;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #7f8c8d;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}

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

.nav-links a:hover {
    color: #1a5490;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 2000;
    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: 2rem;
    flex-wrap: wrap;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-accept {
    background-color: #27ae60;
    color: #ffffff;
}

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

.btn-reject {
    background-color: transparent;
    color: #ffffff;
    border: 1px solid #ffffff;
}

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

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #f0f4f8;
}

.hero-content-left h1 {
    font-size: 2.8rem;
    line-height: 1.2;
    color: #1a5490;
    margin-bottom: 1.5rem;
}

.hero-content-left p {
    font-size: 1.15rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    max-width: 550px;
}

.hero-image-right {
    flex: 1;
    background-color: #e8ecef;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.cta-primary:hover {
    background-color: #14406e;
}

.value-proposition {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

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

.container-narrow h2 {
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.container-narrow p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.8;
}

.process-section {
    display: flex;
    background-color: #fafbfc;
}

.process-left {
    flex: 1;
    background-color: #dfe6e9;
    overflow: hidden;
}

.process-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.process-right {
    flex: 1;
    padding: 4rem 3rem;
}

.process-right h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
    min-width: 60px;
}

.step h4 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step p {
    color: #5a6c7d;
    font-size: 0.95rem;
}

.benefits-grid {
    padding: 5rem 2rem;
    background-color: #ffffff;
}

.benefits-grid h2 {
    text-align: center;
    font-size: 2.2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.benefits-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.benefit-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-radius: 8px;
    text-align: center;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: #5a6c7d;
    font-size: 0.95rem;
}

.testimonials-full {
    background-color: #f0f4f8;
    padding: 5rem 2rem;
}

.testimonial-block {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.testimonial-content {
    flex: 2;
}

.testimonial-content p {
    font-size: 1.25rem;
    color: #34495e;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.testimonial-author strong {
    display: block;
    color: #2c3e50;
    font-size: 1.1rem;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: #7f8c8d;
    font-size: 0.9rem;
}

.testimonial-image {
    flex: 1;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.form-section-split {
    display: flex;
    min-height: 500px;
}

.form-left-info {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #1a5490;
    color: #ffffff;
}

.form-left-info h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.form-left-info p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.form-benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.check-icon {
    font-size: 1.5rem;
    color: #27ae60;
}

.form-right-container {
    flex: 1;
    padding: 4rem 3rem;
    background-color: #ffffff;
}

.contact-form {
    max-width: 500px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem;
    border: 1px solid #dfe6e9;
    border-radius: 4px;
    font-size: 1rem;
    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: #1a5490;
}

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

.btn-submit:hover {
    background-color: #14406e;
}

.cta-secondary {
    padding: 4rem 2rem;
    background-color: #fafbfc;
}

.cta-content-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta-content-centered h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-content-centered p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.btn-outline {
    display: inline-block;
    padding: 1rem 2rem;
    border: 2px solid #1a5490;
    color: #1a5490;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background-color: #1a5490;
    color: #ffffff;
}

.footer {
    background-color: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1rem;
}

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

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

.footer-column h4 {
    color: #ffffff;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #bdc3c7;
}

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

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

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

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #bdc3c7;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.9rem;
    color: #bdc3c7;
}

.page-header {
    padding: 4rem 2rem;
    background-color: #f0f4f8;
    text-align: center;
}

.header-content-center h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.header-content-center p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

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

.service-card-large {
    margin-bottom: 4rem;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.service-image-top {
    background-color: #e8ecef;
    overflow: hidden;
}

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

.service-details {
    padding: 2.5rem;
}

.service-details h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-details p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.feature-item {
    padding: 0.75rem 1.25rem;
    background-color: #f0f4f8;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #34495e;
}

.pricing-block {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5490;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #1a5490;
}

.price-detail {
    font-size: 0.95rem;
    color: #7f8c8d;
}

.service-row-split {
    display: flex;
    margin-bottom: 4rem;
    gap: 3rem;
    align-items: center;
}

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

.service-content-left,
.service-content-right {
    flex: 1;
}

.service-content-left h2,
.service-content-right h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-content-left p,
.service-content-right p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-image-right,
.service-image-left {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.service-card-full {
    margin-bottom: 4rem;
    background-color: #fafbfc;
    padding: 3rem;
    border-radius: 8px;
}

.service-split-content {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.service-text-section {
    flex: 2;
}

.service-text-section h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-text-section p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.service-image-section {
    flex: 1;
    background-color: #dfe6e9;
    border-radius: 8px;
    overflow: hidden;
}

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

.comparison-section {
    padding: 4rem 2rem;
    background-color: #f0f4f8;
}

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

.comparison-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.comparison-item h4 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.comparison-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-services {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

.cta-box {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: #f0f4f8;
    border-radius: 8px;
}

.cta-box h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.btn-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.btn-cta:hover {
    background-color: #14406e;
}

.about-hero {
    padding: 5rem 2rem;
    background-color: #f0f4f8;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-hero-content p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

.story-section {
    display: flex;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 3rem;
    align-items: center;
}

.story-image {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.story-content {
    flex: 1;
}

.story-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.story-content p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.mission-values {
    padding: 4rem 2rem;
    background-color: #fafbfc;
}

.mission-block {
    max-width: 800px;
    margin: 0 auto 3rem;
    text-align: center;
}

.mission-block h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.mission-block p {
    font-size: 1.1rem;
    color: #5a6c7d;
    line-height: 1.7;
}

.values-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.value-card h4 {
    font-size: 1.3rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.value-card p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.team-approach {
    display: flex;
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 2rem;
    gap: 3rem;
}

.approach-content {
    flex: 2;
}

.approach-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.approach-content > p {
    font-size: 1.05rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 2rem;
}

.approach-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.approach-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.approach-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.approach-image {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.expertise-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.expertise-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: #5a6c7d;
    font-size: 1.05rem;
}

.expertise-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.expertise-item {
    padding: 1rem 1.75rem;
    background-color: #f0f4f8;
    border-radius: 4px;
    font-size: 0.95rem;
    color: #34495e;
}

.stats-section {
    padding: 4rem 2rem;
    background-color: #1a5490;
    color: #ffffff;
}

.stats-section h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 3rem;
}

.stats-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-box {
    flex: 1;
    min-width: 200px;
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
}

.cta-about {
    padding: 4rem 2rem;
    background-color: #fafbfc;
}

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

.btn-primary:hover {
    background-color: #14406e;
}

.contact-header {
    padding: 4rem 2rem;
    background-color: #f0f4f8;
    text-align: center;
}

.contact-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-header p {
    font-size: 1.2rem;
    color: #5a6c7d;
    max-width: 700px;
    margin: 0 auto;
}

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

.contact-info-block {
    flex: 1;
}

.contact-info-block h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

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

.contact-detail h4 {
    font-size: 1.1rem;
    color: #1a5490;
    margin-bottom: 0.5rem;
}

.contact-detail p {
    color: #5a6c7d;
    font-size: 1rem;
    line-height: 1.6;
}

.contact-note {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5490;
    margin-top: 2rem;
}

.contact-note p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-image-block {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.contact-reasons {
    padding: 4rem 2rem;
    background-color: #fafbfc;
}

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

.reasons-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.reason-item h4 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.reason-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.faq-section {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.faq-item h4 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.cta-contact {
    padding: 4rem 2rem;
    background-color: #f0f4f8;
}

.cta-box-centered {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background-color: #ffffff;
    border-radius: 8px;
}

.cta-box-centered h3 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.cta-box-centered p {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
}

.thanks-container {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
    background-color: #f0f4f8;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 3rem;
    border-radius: 8px;
}

.thanks-icon {
    font-size: 4rem;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

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

.thanks-message {
    font-size: 1.1rem;
    color: #5a6c7d;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.thanks-info h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.next-steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.step-thanks {
    display: flex;
    gap: 1rem;
    text-align: left;
}

.step-number-thanks {
    min-width: 40px;
    height: 40px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step-thanks p {
    flex: 1;
    color: #5a6c7d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.thanks-service-ref {
    margin-bottom: 2rem;
    padding: 1rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.thanks-service-ref p {
    color: #1a5490;
    font-weight: 600;
    margin: 0;
}

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

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

.btn-secondary:hover {
    background-color: #1a5490;
    color: #ffffff;
}

.thanks-additional {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.additional-content h3 {
    text-align: center;
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.additional-links {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.additional-item h4 {
    font-size: 1.2rem;
    color: #1a5490;
    margin-bottom: 0.75rem;
}

.additional-item p {
    color: #5a6c7d;
    font-size: 0.95rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.additional-item a {
    color: #1a5490;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.additional-item a:hover {
    color: #14406e;
}

.legal-page {
    padding: 4rem 2rem;
    background-color: #ffffff;
}

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

.legal-container h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.legal-update {
    font-size: 0.9rem;
    color: #7f8c8d;
    margin-bottom: 3rem;
}

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

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

.legal-section h3 {
    font-size: 1.3rem;
    color: #34495e;
    margin-bottom: 0.75rem;
    margin-top: 1.5rem;
}

.legal-section p {
    font-size: 1rem;
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 1rem;
}

.legal-section ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.legal-section ul li {
    color: #5a6c7d;
    line-height: 1.7;
    margin-bottom: 0.5rem;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 0.75rem;
    border: 1px solid #dfe6e9;
    text-align: left;
}

.cookie-table th {
    background-color: #f0f4f8;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #5a6c7d;
    font-size: 0.9rem;
}

#resetCookieConsent {
    margin-top: 1rem;
}

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

    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .hero-split,
    .process-section,
    .form-section-split,
    .service-row-split,
    .testimonial-block,
    .story-section,
    .team-approach,
    .contact-main {
        flex-direction: column;
    }

    .service-row-split.reverse {
        flex-direction: column;
    }

    .hero-content-left h1,
    .about-hero-content h1,
    .contact-header h1 {
        font-size: 2rem;
    }

    .benefits-container,
    .values-grid,
    .stats-grid,
    .comparison-grid,
    .reasons-grid {
        flex-direction: column;
    }

    .thanks-actions {
        flex-direction: column;
    }

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

    .cookie-actions {
        width: 100%;
        justify-content: center;
    }
}