﻿h1 {
    text-align: center;
    font-size: 2.5rem;
    color: #3c6e71; /* Màu xanh lá đậm */
    font-weight: 700;
    margin-bottom: 20px;
}

.phone-section {
    text-align: center;
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease-in-out;
    margin: 15px;
    max-width: 350px;
}

    .phone-section:hover {
        transform: translateY(-8px);
        box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
    }

.phone-picture {
    width: 80%;
    height: auto;
    margin: 20px auto;
    max-width: 250px;
}

.card-title {
    font-size: 1.75rem;
    font-weight: 600;
    color: #2a9d8f; /* Màu xanh lam sáng */
    margin-bottom: 15px;
}

.card-text {
    font-size: 1.2rem;
    color: #6b705c; /* Màu xám nâu */
    margin-bottom: 20px;
}

.btn-primary-1 {
    background: linear-gradient(to right, #ff7e5f, #feb47b); /* Hiệu ứng gradient */
    border: none;
    border-radius: 20px;
    padding: 10px 25px;
    font-size: 1.1rem;
    color: #fff; /* Chữ màu trắng */
    transition: all 0.3s ease-in-out;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Bóng nhẹ */
}

.btn-primary:hover {
    background: linear-gradient(to right, #e17055, #d63031); /* Màu đỏ cam khi hover */
    color: #fefae0; /* Chữ nhạt hơn */
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* Bóng mạnh hơn */
}

.row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}


@*@media (max-width: 768px) {
    .phone-section {
        max-width: 100%; /* Cho phép sản phẩm chiếm full chiều rộng màn hình trên thiết bị nhỏ */
    }

    .phone-picture {
        width: 90%; /* Điều chỉnh lại kích thước ảnh cho phù hợp với màn hình nhỏ */
    }
}

*@
