/* Reset basic styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background: #fffaf0;
    color: #002147;
    max-width: 603px;
    margin: 0 auto;
}

.header {
    background-color: #002147;
    text-align: center;
    padding: 10px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header .logo img {
    height: 60px;
    margin-bottom: 10px;
}

.header p {
    font-size: 25px;
    font-weight: bold;
}



/* Banner Buttons */
.banner-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 20px;
}

.banner-buttons a {
    background: #002147;
    color: white;
    border: none;
    padding: 20px 30px;
    font-size: 18px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: transform 0.3s;
    text-decoration: none;
}

iframe {
    display: block;
    margin: 0 auto;
    width: 80%;
    height: 800px;
}

.container {
    padding: 20px;
    text-align: center;
    text-decoration: none;

}

.banner-buttons a img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    vertical-align: middle;
}

.banner-buttons a:hover {
    transform: translateY(-5px);
    background-color: #004080;
}

.details {
    margin: 10px;
    gap: 10px;
}

.a {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 20px;
    text-decoration: none;
}

.buttons button {
    background-color: #002147;
    color: white;
    padding: 15px 25px;
    border: none;
    border-radius: 10px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.buttons button:hover {
    background-color: #004080;
}

.history {
    text-align: center;
    padding: 30px 20px;
}

.history p {
    margin: 15px 0;
    font-size: 16px;
    line-height: 1.6;
}

.btn-readmore {
    display: inline-block;
    margin-top: 15px;
    padding: 10px 20px;
    background-color: #002147;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    transition: background-color 0.3s;
}

.btn-readmore:hover {
    background-color: #004080;
}

.gallery-container {
    padding: 20px;
    overflow-x: auto;
    white-space: nowrap;
}

.gallery-container::-webkit-scrollbar {
    height: 8px;
}

.gallery-container::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 10px;
}

.gallery-container::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.gallery-item {
    display: inline-block;
    margin-right: 15px;
    border-radius: 10px;
    overflow: hidden;
    background: #ddd;
    transition: transform 0.3s ease;
    max-height: 145px;
}

.gallery-item img {
    width: 250px;
    height: 150px;
    object-fit: cover;
    display: block;
    max-height: 145px;
}

.gallery-item:hover {
    transform: scale(1.05);
}

/* Responsive for larger screens */
@media (min-width: 768px) {
    .gallery-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        overflow: hidden;
    }

    .gallery-item {
        margin: 10px;
    }
}

.footer {
    text-align: center;
    padding: 30px 20px;
}

.btn-sampark {
    display: inline-block;
    padding: 15px 30px;
    background-color: #002147;
    color: white;
    text-decoration: none;
    border-radius: 10px;
    font-size: 18px;
    transition: background-color 0.3s;
}

.btn-sampark:hover {
    background-color: #004080;
}

/* Responsive Design */
@media (max-width: 600px) {
    .buttons button {
        width: 100%;
        max-width: 300px;
    }
}

footer {
    background-color: #002147;
    color: white;
    text-align: center;
    padding: 20px 0;
    font-family: Arial, sans-serif;
}

.footer-content {
    margin: 0 auto;
    width: 80%;
}

.footer-content ul {
    list-style-type: none;
    padding: 0;
    margin: 10px 15px;
}

.footer-content ul li {
    display: inline;
    margin: 10px 15px;
}

.footer-content ul li a {
    color: white;
    text-decoration: none;
}

.footer-content ul li a:hover {
    text-decoration: underline;
}