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

.ad-disclosure {
    background-color: #fef3cd;
    color: #856404;
    text-align: center;
    padding: 8px 15px;
    font-size: 13px;
    border-bottom: 1px solid #ffeaa7;
}

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-left .logo {
    font-size: 26px;
    font-weight: 700;
    color: #1a5490;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    gap: 32px;
}

.header-right a {
    text-decoration: none;
    color: #495057;
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #1a5490;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: linear-gradient(135deg, #1a5490 0%, #2d6fa8 100%);
    color: #ffffff;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

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

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

.cta-primary:hover {
    background-color: #f8f9fa;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.intro-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.intro-left {
    flex: 1;
    background-color: #dee2e6;
    border-radius: 8px;
    overflow: hidden;
}

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

.intro-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.intro-right p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.stats-section {
    display: flex;
    justify-content: center;
    gap: 80px;
    padding: 60px 40px;
    background-color: #f1f3f5;
}

.stat-card {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: #6c757d;
    font-weight: 500;
}

.services-preview {
    max-width: 1280px;
    margin: 80px auto;
    padding: 0 40px;
}

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

.services-intro {
    text-align: center;
    font-size: 18px;
    color: #6c757d;
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 60px;
}

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

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

.service-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background-color: #e9ecef;
}

.service-card h3 {
    font-size: 22px;
    color: #212529;
    margin: 20px 24px 12px;
}

.service-card p {
    font-size: 15px;
    color: #6c757d;
    line-height: 1.6;
    margin: 0 24px 16px;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    margin: 0 24px 16px;
}

.select-service-btn {
    margin: 0 24px 24px;
    padding: 12px 24px;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.contact-form-wrapper {
    background-color: #f8f9fa;
    padding: 60px 40px;
    border-radius: 8px;
    margin-top: 40px;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h3 {
    font-size: 32px;
    color: #212529;
    margin-bottom: 16px;
    text-align: center;
}

.selected-service-display {
    text-align: center;
    font-size: 16px;
    color: #6c757d;
    margin-bottom: 32px;
    padding: 16px;
    background-color: #e7f3ff;
    border-radius: 6px;
}

.selected-service-display.active {
    color: #1a5490;
    font-weight: 600;
}

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

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

.form-group input,
.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 textarea:focus {
    outline: none;
    border-color: #1a5490;
}

.form-group textarea {
    resize: vertical;
}

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

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

.submit-btn:disabled {
    background-color: #adb5bd;
    cursor: not-allowed;
}

.trust-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
    flex-direction: row-reverse;
}

.trust-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
}

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

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

footer {
    background-color: #212529;
    color: #adb5bd;
    padding: 60px 40px 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    max-width: 1280px;
    margin: 0 auto 40px;
    flex-wrap: wrap;
}

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

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.footer-section a {
    display: block;
    color: #adb5bd;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 8px;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    max-width: 1280px;
    margin: 0 auto 32px;
    padding: 24px;
    background-color: #343a40;
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.7;
    color: #adb5bd;
}

.footer-bottom {
    text-align: center;
    padding-top: 24px;
    border-top: 1px solid #495057;
    font-size: 14px;
    max-width: 1280px;
    margin: 0 auto;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    box-shadow: 0 -4px 16px 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;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-content p {
    flex: 1;
    font-size: 14px;
    color: #495057;
    margin: 0;
}

.cookie-content a {
    color: #1a5490;
    text-decoration: underline;
}

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

.cookie-accept,
.cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background-color: #1a5490;
    color: #ffffff;
}

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

.cookie-reject {
    background-color: #e9ecef;
    color: #495057;
}

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

.page-header {
    background: linear-gradient(135deg, #1a5490 0%, #2d6fa8 100%);
    color: #ffffff;
    padding: 80px 40px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-header p {
    font-size: 20px;
    opacity: 0.95;
}

.about-intro-split {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 24px;
}

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

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

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

.values-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
}

.values-section h2 {
    font-size: 42px;
    color: #212529;
    margin-bottom: 48px;
    text-align: center;
}

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

.value-item {
    flex: 1 1 calc(50% - 16px);
    min-width: 280px;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 24px;
    color: #1a5490;
    margin-bottom: 12px;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
}

.timeline-section {
    max-width: 900px;
    margin: 80px auto;
    padding: 0 40px;
}

.timeline-section h2 {
    font-size: 42px;
    color: #212529;
    margin-bottom: 48px;
    text-align: center;
}

.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background-color: #1a5490;
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-year {
    position: absolute;
    left: -55px;
    top: 0;
    font-size: 20px;
    font-weight: 700;
    color: #1a5490;
    background-color: #ffffff;
    padding: 4px 8px;
}

.timeline-content h3 {
    font-size: 22px;
    color: #212529;
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #6c757d;
}

.approach-section {
    display: flex;
    max-width: 1200px;
    margin: 80px auto;
    gap: 60px;
    padding: 0 40px;
}

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

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

.approach-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.approach-text h2 {
    font-size: 36px;
    color: #1a5490;
    margin-bottom: 24px;
}

.approach-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.team-section {
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 40px;
    text-align: center;
}

.team-section h2 {
    font-size: 42px;
    color: #212529;
    margin-bottom: 24px;
}

.team-section > p {
    font-size: 17px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 48px;
}

.team-stats {
    display: flex;
    justify-content: center;
    gap: 80px;
}

.team-stat {
    text-align: center;
}

.services-detail {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

.service-detail-card {
    display: flex;
    gap: 60px;
    margin-bottom: 80px;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

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

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

.service-detail-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

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

.service-detail-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 20px;
}

.service-detail-content ul {
    margin: 20px 0 20px 20px;
}

.service-detail-content li {
    font-size: 15px;
    line-height: 1.8;
    color: #6c757d;
    margin-bottom: 8px;
}

.service-price-large {
    font-size: 36px;
    font-weight: 700;
    color: #1a5490;
    margin: 24px 0 8px;
}

.price-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.cta-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.cta-section h2 {
    font-size: 32px;
    color: #212529;
    margin-bottom: 16px;
}

.cta-section p {
    font-size: 17px;
    color: #6c757d;
    margin-bottom: 32px;
}

.cta-button {
    display: inline-block;
    padding: 16px 40px;
    background-color: #1a5490;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: #144170;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.contact-content {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 40px;
}

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

.contact-block {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.contact-block h2 {
    font-size: 24px;
    color: #1a5490;
    margin-bottom: 24px;
}

.contact-detail {
    margin-bottom: 24px;
}

.contact-detail h3 {
    font-size: 18px;
    color: #212529;
    margin-bottom: 12px;
}

.contact-detail p {
    font-size: 15px;
    line-height: 1.7;
    color: #495057;
}

.email-text {
    font-weight: 600;
    color: #1a5490;
}

.email-note {
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
    margin-top: 8px;
}

.contact-map-section {
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 60px;
}

.contact-map-section h2 {
    font-size: 28px;
    color: #1a5490;
    margin-bottom: 16px;
}

.contact-map-section p {
    font-size: 16px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 32px;
}

.contact-directions {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

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

.direction-item h3 {
    font-size: 18px;
    color: #212529;
    margin-bottom: 8px;
}

.direction-item p {
    font-size: 15px;
    color: #6c757d;
}

.contact-additional {
    max-width: 1200px;
    margin: 60px auto 80px;
    padding: 0 40px;
}

.contact-additional h2 {
    font-size: 32px;
    color: #212529;
    margin-bottom: 32px;
    text-align: center;
}

.branches-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.branch-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
}

.branch-card h3 {
    font-size: 20px;
    color: #1a5490;
    margin-bottom: 16px;
}

.branch-card p {
    font-size: 15px;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 8px;
}

.branch-email {
    font-weight: 600;
    color: #1a5490;
    margin-top: 12px;
}

.legal-page {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 40px;
}

.legal-page h1 {
    font-size: 42px;
    color: #212529;
    margin-bottom: 16px;
}

.legal-updated {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 40px;
}

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

.legal-content h3 {
    font-size: 22px;
    color: #212529;
    margin-top: 24px;
    margin-bottom: 12px;
}

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

.legal-content ul {
    margin: 16px 0 16px 32px;
}

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

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

.legal-content a:hover {
    color: #144170;
}

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

.gdpr-table th,
.cookies-table th {
    background-color: #1a5490;
    color: #ffffff;
    padding: 12px;
    text-align: left;
    font-weight: 600;
}

.gdpr-table td,
.cookies-table td {
    padding: 12px;
    border: 1px solid #dee2e6;
    font-size: 15px;
    color: #495057;
}

.gdpr-table tbody tr:nth-child(even),
.cookies-table tbody tr:nth-child(even) {
    background-color: #f8f9fa;
}

.thanks-section {
    max-width: 800px;
    margin: 80px auto;
    padding: 0 40px;
}

.thanks-content {
    background-color: #ffffff;
    padding: 60px;
    border-radius: 8px;
    text-align: center;
}

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

.thanks-message {
    font-size: 18px;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 40px;
}

.thanks-info {
    background-color: #f8f9fa;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 40px;
    text-align: left;
}

.thanks-info h2 {
    font-size: 24px;
    color: #212529;
    margin-bottom: 20px;
}

.thanks-info ol {
    margin-left: 24px;
}

.thanks-info li {
    font-size: 16px;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 12px;
}

.selected-service-highlight {
    background-color: #e7f3ff;
    padding: 16px;
    border-radius: 6px;
    margin-bottom: 24px;
    font-size: 17px;
    color: #1a5490;
}

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

.button-primary,
.button-secondary {
    padding: 14px 32px;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.button-primary {
    background-color: #1a5490;
    color: #ffffff;
}

.button-primary:hover {
    background-color: #144170;
}

.button-secondary {
    background-color: #e9ecef;
    color: #495057;
}

.button-secondary:hover {
    background-color: #dee2e6;
}

.thanks-contact {
    padding-top: 32px;
    border-top: 1px solid #dee2e6;
}

.thanks-contact p {
    font-size: 15px;
    color: #6c757d;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 16px;
        padding: 16px 20px;
    }

    .header-right {
        gap: 20px;
    }

    .hero-split {
        flex-direction: column;
    }

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

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

    .intro-section,
    .trust-section,
    .about-intro-split,
    .approach-section {
        flex-direction: column;
        margin: 60px auto;
    }

    .service-detail-card {
        flex-direction: column;
        padding: 24px;
    }

    .stats-section,
    .team-stats {
        flex-direction: column;
        gap: 40px;
    }

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