﻿body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}

.banner-background {
    background: linear-gradient(135deg, #0a4b78 0%, #083d61 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero {
    padding: 80px 0;
}

    .hero:before {
        content: '';
        position: absolute;
        right: -5%;
        top: -10%;
        width: 300px;
        height: 300px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        z-index: 0;
    }

    .hero:after {
        content: '';
        position: absolute;
        left: -5%;
        bottom: -10%;
        width: 200px;
        height: 200px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.05);
        z-index: 0;
    }

.section {
    padding: 80px 0;
}

.section-light {
    background-color: #ffffff;
}

.section-dark {
    background-color: #f8f9fa;
}

h2 {
    color: #0a4b78;
    margin-bottom: 20px;
    font-weight: 600;
}

.feature-block {
    padding: 60px 0;
    border-bottom: 1px solid #e0e0e0;
}

    .feature-block:last-child {
        border-bottom: none;
    }

.image-container {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .image-container:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
    }

    .image-container img {
        width: 100%;
        height: auto;
    }

.cta-section {
    background-color: #0a4b78;
    color: white;
    padding: 60px 0;
    text-align: center;
}

    .cta-section h3 {
        margin-bottom: 20px;
        font-weight: 600;
    }

    .cta-section p {
        max-width: 700px;
        margin: 0 auto 30px;
    }

.btn-primary {
    background-color: #ff9800;
    border-color: #ff9800;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #e88e00;
        border-color: #e88e00;
        transform: translateY(-2px);
    }

.btn-outline-light:hover {
    transform: translateY(-2px);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background-color: #0a4b78;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 2rem;
}

.benefits-section {
    background-color: #f8f9fa;
    padding: 60px 0;
}

.benefit-card {
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    padding: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
}

    .benefit-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.benefit-icon {
    width: 60px;
    height: 60px;
    background-color: #0a4b78;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

ul.feature-list {
    list-style: none;
    padding-left: 0;
    margin-top: 20px;
}

    ul.feature-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 15px;
        font-size: 1rem;
    }

        ul.feature-list li:before {
            content: "\f054";
            font-family: "Font Awesome 5 Free";
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: #ff9800;
        }
