body {
    font-family: Arial, sans-serif;
    background-color: #EFEFEF;
    color: #333;
    margin: 0;
    padding: 0;
    border-top: 4px solid #4B0082;
}

.page-wrapper {
    width: 960px;
    margin: 0 auto;
    background-color: #FFF;
    min-height: calc(100vh - 4px);
    display: flex;
    flex-direction: column;
}

header {
    background: #fff;
}

.header-top {
    display: flex;
    height: 70px;
    background: linear-gradient(to bottom, #A2D13C, #008A00);
    background-image: url('header.jpg');
    background-position: center;

    justify-content: space-between;
    align-items: center;
    padding: 10px 30px;
}

.logo img {
    height: 50px;
}

header nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 15px;
}

header nav a {
    color: #333;
    text-decoration: underline;
    font-size: 0.9em;
}

.header-banner {
    height: 40px;
    background: linear-gradient(to bottom, #A2D13C, #008A00);
    border-top: 2px solid #FFA500;
    border-bottom: 2px solid #FFA500;
}

.main-container {
    padding: 20px;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.right-column {
    font-size: 1.2em;
    line-height: 1.6;
    padding: 40px;
    border: 0.1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    text-align: center;
}

.right-column p {
    margin-bottom: 20px;
}

.right-column a {
    color: #6699CC;
    text-decoration: none;
    font-size: 0.9rem
}

.right-column a:hover {
    text-decoration: underline;
}

footer {
    border-top: 2px solid #D4E4A1;
    padding: 20px;
    margin-top: 20px;
    font-size: 0.9em;
    color: #666;
}

footer .footer-links ul {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

footer .footer-links a {
    color: #333;
    text-decoration: none;
}

footer .footer-links a:hover {
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin: 10px 0;
    color: #888;
}

.footer-bottom a {
    color: #6699CC;
    text-decoration: none;
    font-size: 0.9rem
}

.top-destinations h3 {
    font-size: 1em;
    color: #333;
    text-align: left;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 5px;
} 