/* General settings for content boxes and hover effects */
.info-box, .table-box, .gallery-box {
    background-color: #ffffff; /* White background */
    border-left: 5px solid #006600; /* Green left border */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow */
    transition: all 0.3s ease; /* Smooth transition for hover effects */
}

.info-box:hover, .table-box:hover, .gallery-box:hover {
    transform: translateY(-5px); /* Raise the box on hover */
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2); /* Darker shadow on hover */
}

/* Header styles within boxes */
.info-box h2, .table-box h2, .gallery-box h2 {
    color: #006600; /* Green text */
    margin-bottom: 15px; /* Space between title and content */
}

/* Styles for tables within boxes */
.table-box table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.table-box th {
    background-color: #006600; /* Green background */
    color: #ffffff; /* White text */
    text-align: center; /* Center text alignment */
    font-weight: bold;
}

.table-box td {
    padding: 10px;
    text-align: left; /* Left text alignment for table data */
    color: #333; /* Darker gray for more prominent text, making it slightly grayish */
}

.table-box tr:nth-child(even) {
    background-color: #f2f2f2; /* Light gray background for even rows */
}

/* Gallery item styles */
.gallery-box .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* Adjust minmax for your preferred size */
    grid-gap: 15px;
}

.gallery-box .gallery-item {
    overflow: hidden; /* Optional for controlling image overflow */
    box-shadow: 0 4px 6px rgba(0,0,0,0.2); /* Consistent shadow */
    position: relative;
}

.gallery-box .gallery-item img {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease-in-out;
}

.gallery-box .gallery-item:hover img {
    transform: scale(1.1); /* Zoom effect on hover */
}

.gallery-box .gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background for readability */
    color: #ffffff;
    text-align: center;
    padding: 5px;
    font-size: 0.9em;
}

/* FAQ specific styles */
.faq-question {
    cursor: pointer;
    background-color: #f9f9f9; /* Light gray background */
    padding: 10px;
    border-bottom: 1px solid #ddd; /* Border for separation */
    position: relative;
    font-weight: bold;
    color: #333; /* Dark text color */
}

.faq-question::after {
    content: '+'; /* Add icon */
    position: absolute;
    right: 10px; /* Right padding */
    top: 50%; /* Center vertically */
    transform: translateY(-50%);
    font-size: 24px; /* Icon size */
}

.faq-question.active::after {
    content: '-'; /* Change icon when active */
}

.faq-answer {
    display: none; /* Hide answer by default */
    padding: 10px;
    background-color: #fff;
}


.dich-vu-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.dich-vu-item {
    border: 1px solid #ccc;
    padding: 10px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.dich-vu-thumbnail img {
    width: 100%;
    height: auto;
}

.dich-vu-title {
    font-size: 20px;
    color: #333;
    margin-top: 10px;
}

.dich-vu-benefits {
    font-size: 16px;
    color: #666;
    margin: 10px 0;
}

.read-more {
    background-color: #0073aa;
    color: white;
    padding: 8px 16px;
    text-decoration: none;
    display: inline-block;
}

.read-more:hover {
    background-color: #005077;
}
