﻿body {
    font-family: Arial, sans-serif;
    background-color: #f8f9fa;
}


.hero-section {
    background-color: #0a4b78;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.banner-background {
    background: linear-gradient(135deg, #0a4b78 0%, #083d61 100%);
    color: white;
}

.hero {
    position: relative;
    overflow: hidden;
}

    .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;
    }

.hero-features {
    font-size: 1.1rem;
}

.hero-feature-item {
    display: flex;
    align-items: center;
}

.hero-image-container {
    position: relative;
    z-index: 1;
}

.hero-image {
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
    max-height: 300px;
}

.trusted-badge {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.display-4 {
    font-weight: 700;
}

.btn-primary {
    background-color: #ff9800;
    border-color: #ff9800;
    font-weight: 600;
}

    .btn-primary:hover {
        background-color: #e88e00;
        border-color: #e88e00;
    }

@media (max-width: 991.98px) {
    .hero {
        text-align: center;
    }

    .hero-features .d-flex {
        justify-content: center;
    }

    .d-flex.flex-wrap {
        justify-content: center;
    }
}

.pricing-container {
    padding: 80px 0;
}

.pricing-card {
    background-color: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    border: 1px solid #e0e0e0;
}

    .pricing-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0,0,0,0.15);
    }

.pricing-header {
    background-color: #0a4b78;
    color: white;
    padding: 25px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

    .pricing-header h3 {
        margin: 0;
        font-weight: 600;
    }

.pricing-img {
    padding: 30px;
    text-align: center;
    background-color: white;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .pricing-img img {
        max-height: 100%;
        max-width: 100%;
    }

.pricing-details {
    padding: 30px;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: #0a4b78;
    margin-bottom: 5px;
}

.price-period {
    color: #666;
    display: block;
    margin-bottom: 20px;
}

.price-onetime {
    font-size: 1.8rem;
    font-weight: 700;
    color: #444;
    margin-bottom: 5px;
}

.pricing-details ul {
    list-style-type: none;
    padding: 0;
    margin: 0 0 25px 0;
}

    .pricing-details ul li {
        padding: 8px 0;
        border-bottom: 1px solid #f0f0f0;
    }

        .pricing-details ul li:last-child {
            border-bottom: none;
        }

        .pricing-details ul li .fa-check {
            color: #4CAF50;
            margin-right: 8px;
        }

        .pricing-details ul li .fa-times {
            color: #e53935;
            margin-right: 8px;
        }

.pricing-addons {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
}

    .pricing-addons h4 {
        font-size: 1.2rem;
        margin-bottom: 15px;
        color: #333;
    }

    .pricing-addons ul {
        margin-bottom: 0;
    }

.btn-primary {
    background-color: #0a4b78;
    border-color: #0a4b78;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
}

    .btn-primary:hover {
        background-color: #083a5e;
        border-color: #083a5e;
        transform: translateY(-2px);
    }

.no-contract-badge {
    background-color: #28a745;
    color: white;
    font-size: 0.9rem;
    padding: 5px 15px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 20px;
}

.call-to-action {
    background-color: #0a4b78;
    color: white;
    padding: 60px 0;
    text-align: center;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

    .section-title h2 {
        color: #333;
        font-weight: 600;
        margin-bottom: 15px;
    }

    .section-title p {
        color: #666;
        max-width: 800px;
        margin: 0 auto;
    }
