﻿.title-page {
    text-align: center;
    font-size: 1.8rem;
    color: #004085; /* Màu xanh đậm */
    font-weight: 700;
    margin-top: 10px;
}

.phone-section {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease-in-out;
    margin: 10px;
    background-color: #f9f9f9; /* Màu nền sáng */
}

    .phone-section:hover {
        transform: translateY(-5px);
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    }

.phone-picture {
    height: auto;
    width: 100%;
    max-width: 40%;
    margin: auto;
    margin-bottom: 10px;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333; /* Màu đen nhạt */
    margin-bottom: 10px;
}

.card-text {
    font-size: 0.95rem;
    color: #555; /* Màu xám trung bình */
    margin-bottom: 15px;
}

.btn-primary-5 {
    background-color: #28a745; /* Màu xanh lá */
    border: none;
    border-radius: 20px;
    padding: 8px 20px;
    font-size: 0.95rem;
    transition: background-color 0.2s ease-in-out, transform 0.2s;
    color: #fff; /* Màu chữ trắng */
}

    .btn-primary:hover {
        background-color: #218838; /* Màu xanh đậm hơn khi hover */
        transform: scale(1.05); /* Hiệu ứng phóng to nhẹ */
    }

.container {
    padding: 0 15px;
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.banner-1, {
    justify-content: center;
}


/* Cải tiến thêm */
body {
    font-family: 'Arial', sans-serif;
    background-color: #eef5f9; /* Nền tổng quan */
}



/* Đánh dấu sản phẩm nổi bật */
.phone-section.featured {
    border: 2px solid #ffc107; /* Viền vàng */
}

    .phone-section.featured .card-title {
        color: #ffc107; /* Màu chữ vàng nổi bật */
    }

