﻿body {
    font-family: Arial, sans-serif;
}

.banner-background {
    background-color: #0a4b78;
    color: white;
}

.hero {
    padding: 50px 0;
}

.price-box {
    background-color: rgba(255, 255, 255, 0.1);
    border-left: 4px solid #ff9800;
    padding: 15px 20px;
    border-radius: 4px;
    margin-bottom: 25px;
}

.price {
    color: #fff;
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
}

.warranty {
    font-size: 24px;
    color: #fff;
}

.warranty-note {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

.image-container {
    background-color: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 350px;
    margin: 0 auto;
    transition: transform 0.3s ease;
}

    .image-container:hover {
        transform: translateY(-5px);
    }

.device-section {
    background-color: #ffffff;
    border: 1px solid #bdd4ee;
    border-right: 2px solid #bdd4ee;
    border-bottom: 2px solid #bdd4ee;
    padding: 20px;
    margin-bottom: 30px;
}

.feature-heading {
    color: #0a3e85;
    padding: 15px 0 0;
}

.warranty-heading {
    color: #f00;
    padding: 15px 0 0;
}

.feature-text {
    font-size: 15px;
    padding-top: 5px;
}

.feature-item {
    margin-bottom: 15px;
}

    .feature-item .fa-check-circle {
        color: #4CAF50;
        margin-right: 10px;
    }

.feature-name {
    font-weight: 600;
}

.features-list {
    list-style-type: none;
    padding-left: 20px;
    margin-top: 20px;
}

    .features-list li {
        padding: 5px;
        margin-bottom: 15px;
        position: relative;
        padding-left: 30px;
    }

        .features-list li:before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: #4CAF50;
            position: absolute;
            left: 0;
            top: 5px;
        }

.lead {
    font-size: 1.1rem;
}

.section {
    padding: 60px 0;
}

.bg-light-gray {
    background-color: #f8f9fa;
}

.bg-dark {
    background-color: #343a40;
    color: white;
}

.table-secondary {
    background-color: #e9ecef;
}

.feature-card {
    border: 1px solid #dee2e6;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 30px;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

    .feature-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    }

    .feature-card h4 {
        color: #0a3e85;
        margin-bottom: 15px;
    }

    .feature-card .fa-stack {
        margin-bottom: 20px;
    }

    .feature-card .fa-circle {
        color: #0a4b78;
    }

    .feature-card .fa-inner {
        color: white;
    }




.feature-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-primary {
    background-color: #0a4b78 !important;
}

.text-primary {
    color: #0a4b78 !important;
}

.bg-success {
    background-color: #28a745 !important;
}