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

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

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

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

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #1e3a5f;
    letter-spacing: -0.5px;
}

.main-nav {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.main-nav a:hover {
    color: #2980b9;
}

.ad-label {
    font-size: 11px;
    color: #7f8c8d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 4px 10px;
    background-color: #f8f9fa;
    border-radius: 3px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

.cookie-banner.active {
    display: block;
}

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

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 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-section {
    position: relative;
    height: 580px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-color: #34495e;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    background: linear-gradient(to right, rgba(30, 58, 95, 0.92), rgba(30, 58, 95, 0.75));
    padding: 80px 0;
}

.hero-text {
    max-width: 650px;
    color: #ffffff;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #e74c3c;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

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

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

.intro-section h2 {
    font-size: 36px;
    line-height: 1.4;
    margin-bottom: 28px;
    color: #1e3a5f;
}

.intro-section p {
    font-size: 18px;
    color: #576574;
}

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

.section-header-offset {
    margin-bottom: 56px;
}

.section-header-offset h2 {
    font-size: 40px;
    color: #1e3a5f;
    font-weight: 700;
}

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

.service-card {
    flex: 1;
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e8ecef;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
}

.service-content {
    padding: 28px;
}

.service-content h3 {
    font-size: 22px;
    margin-bottom: 14px;
    color: #1e3a5f;
}

.service-content p {
    font-size: 16px;
    color: #576574;
    margin-bottom: 20px;
}

.service-price {
    font-size: 26px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 16px;
}

.service-link {
    display: inline-block;
    color: #2980b9;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.service-link:hover {
    color: #1e3a5f;
}

.why-section {
    padding: 90px 0;
    background-color: #ecf0f1;
}

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

.split-image {
    flex: 1;
    min-width: 320px;
    height: 460px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
    border-radius: 8px;
}

.split-content {
    flex: 1;
    min-width: 320px;
}

.split-content h2 {
    font-size: 34px;
    margin-bottom: 28px;
    color: #1e3a5f;
    line-height: 1.3;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 16px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
    border-bottom: 1px solid #d5dbdb;
}

.benefits-list li:last-child {
    border-bottom: none;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 20px;
}

.form-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1e3a5f 0%, #2c5282 100%);
    color: #ffffff;
}

.form-header {
    text-align: center;
    margin-bottom: 48px;
}

.form-header h2 {
    font-size: 36px;
    margin-bottom: 16px;
}

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

.contact-form {
    background-color: #ffffff;
    padding: 44px;
    border-radius: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #d5dbdb;
    border-radius: 4px;
    font-size: 16px;
    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: #2980b9;
}

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

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

.trust-section {
    padding: 90px 0;
    background-color: #f8f9fa;
}

.trust-section h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 56px;
    color: #1e3a5f;
}

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

.testimonial-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.testimonial-card p {
    font-size: 17px;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 16px;
}

.testimonial-author {
    font-weight: 600;
    color: #7f8c8d;
    font-size: 15px;
}

.main-footer {
    background-color: #1e3a5f;
    color: #ffffff;
    padding: 64px 0 24px;
}

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

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

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

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

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

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

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

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

.footer-bottom {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: #95a5a6;
    font-size: 14px;
    text-align: center;
}

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

.page-hero h1 {
    font-size: 44px;
    margin-bottom: 16px;
}

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

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

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

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

.service-visual {
    flex: 1;
    min-width: 320px;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #bdc3c7;
    border-radius: 8px;
}

.service-info {
    flex: 1;
    min-width: 320px;
}

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

.service-info p {
    font-size: 17px;
    color: #576574;
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-details {
    list-style: none;
    margin-bottom: 28px;
}

.service-details li {
    padding: 10px 0;
    padding-left: 28px;
    position: relative;
    color: #2c3e50;
}

.service-details li::before {
    content: "•";
    position: absolute;
    left: 0;
    color: #2980b9;
    font-weight: 700;
    font-size: 24px;
}

.service-pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 24px;
}

.price-label {
    font-size: 16px;
    color: #7f8c8d;
}

.price-value {
    font-size: 32px;
    font-weight: 700;
    color: #e74c3c;
}

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

.cta-section h2 {
    font-size: 34px;
    margin-bottom: 16px;
    color: #1e3a5f;
}

.cta-section p {
    font-size: 18px;
    color: #576574;
    margin-bottom: 32px;
}

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

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

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

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

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
    border-top: 4px solid #2980b9;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #1e3a5f;
}

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

.team-section {
    padding: 80px 0;
}

.team-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1e3a5f;
}

.team-description {
    margin-bottom: 48px;
}

.team-description p {
    font-size: 17px;
    color: #576574;
    line-height: 1.7;
}

.certifications h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

.certifications ul {
    list-style: none;
}

.certifications ul li {
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #2c3e50;
    border-bottom: 1px solid #e8ecef;
}

.certifications ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

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

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

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step-item {
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #2980b9;
    opacity: 0.2;
    min-width: 80px;
}

.step-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1e3a5f;
}

.step-content p {
    font-size: 17px;
    color: #576574;
    line-height: 1.6;
}

.contact-info-section {
    padding: 80px 0;
}

.contact-layout {
    display: flex;
    gap: 56px;
    flex-wrap: wrap;
}

.contact-details {
    flex: 1;
    min-width: 320px;
}

.contact-block {
    margin-bottom: 48px;
}

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

.contact-block p {
    font-size: 17px;
    color: #2c3e50;
    line-height: 1.6;
}

.contact-block .note {
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
    margin-top: 12px;
}

.email-display {
    font-weight: 600;
    color: #2980b9;
}

.hours-table {
    width: 100%;
    margin-top: 16px;
}

.hours-table tr {
    border-bottom: 1px solid #e8ecef;
}

.hours-table td {
    padding: 12px 0;
    font-size: 16px;
}

.hours-table td:first-child {
    color: #576574;
}

.hours-table td:last-child {
    font-weight: 600;
    color: #2c3e50;
    text-align: right;
}

.contact-map {
    flex: 1;
    min-width: 320px;
}

.map-placeholder {
    width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
    background-color: #dfe6e9;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(30, 58, 95, 0.9), transparent);
    padding: 24px;
    color: #ffffff;
}

.map-overlay p {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

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

.contact-faq h2 {
    font-size: 36px;
    margin-bottom: 48px;
    color: #1e3a5f;
    text-align: center;
}

.faq-item {
    background-color: #ffffff;
    padding: 28px;
    margin-bottom: 20px;
    border-radius: 8px;
    border-left: 4px solid #2980b9;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e3a5f;
}

.faq-item p {
    font-size: 16px;
    color: #576574;
    line-height: 1.6;
}

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

.thanks-content {
    text-align: center;
}

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

.thanks-content h1 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

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

.service-confirmation {
    background-color: #ecf0f1;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 40px;
    font-weight: 600;
    color: #2c3e50;
}

.next-steps {
    text-align: left;
    margin-bottom: 48px;
}

.next-steps h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1e3a5f;
}

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

.next-steps ul li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: #2c3e50;
}

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

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

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: #2980b9;
    border: 2px solid #2980b9;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: #2980b9;
    color: #ffffff;
}

.legal-page {
    padding: 80px 0;
    background-color: #ffffff;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #1e3a5f;
}

.legal-intro {
    font-size: 18px;
    color: #576574;
    margin-bottom: 48px;
    line-height: 1.7;
}

.legal-page h2 {
    font-size: 26px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #1e3a5f;
}

.legal-page h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.legal-page p {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 16px;
    line-height: 1.7;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-page ul li {
    font-size: 16px;
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.6;
}

.legal-page a {
    color: #2980b9;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #1e3a5f;
}

.legal-footer {
    margin-top: 48px;
    padding-top: 24px;
    border-top: 1px solid #e8ecef;
    font-size: 15px;
    color: #7f8c8d;
    font-style: italic;
}

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

    .header-content {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }

    .main-nav {
        flex-direction: column;
        gap: 12px;
        align-items: flex-start;
        width: 100%;
    }

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

    .service-block {
        flex-direction: column;
    }

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

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

    .step-item {
        flex-direction: column;
    }

    .step-number {
        min-width: auto;
    }
}