* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

.header {
    background: linear-gradient(135deg, #2ecc71, #27ae60);
    color: white;
    padding: 1rem;
    text-align: center;
}

.nav {
    background: linear-gradient(135deg, #27ae60, #219a52);
    padding: 1rem;
}

.nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.nav a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.nav a:hover {
    color: #a8e6cf;
}

.main {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 0 2rem;
}

.hero {
    text-align: center;
    padding: 4rem 0;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.hero p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.search-section {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.search-form {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}

.search-form input,
.search-form select {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.search-button {
    background-color: #3498db;
    color: white;
    border: none;
    padding: 0.8rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.search-button:hover {
    background-color: #2980b9;
}

.space-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.space-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.space-image {
    width: 100%;
    height: 200px;
    background-color: #eee;
    background-size: cover;
    background-position: center;
}

.space-info {
    padding: 1.5rem;
}

.space-price {
    color: #e74c3c;
    font-weight: bold;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

.book-button {
    display: block;
    width: 100%;
    padding: 0.8rem;
    background-color: #2ecc71;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    margin-top: 1rem;
    transition: background-color 0.3s;
}

.book-button:hover {
    background-color: #27ae60;
}

.footer {
    background: linear-gradient(135deg, #27ae60, #219a52);
    color: white;
    text-align: center;
    padding: 2rem;
    margin-top: 4rem;
}

.fee-table table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.fee-table th,
.fee-table td {
    padding: 1rem;
    border: 1px solid #ddd;
    text-align: left;
}

.fee-table th {
    background-color: #f8f9fa;
    font-weight: bold;
}

.fee-table tr:nth-child(even) {
    background-color: #f8f9fa;
}

.fee-table tr:hover {
    background-color: #f5f5f5;
}

.fee-section,
.guidelines-section,
.loading-section {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.fee-section h2,
.guidelines-section h2,
.loading-section h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.8rem;
    padding-left: 2rem;
}

.fee-notes {
    margin-top: 2rem;
    padding-left: 2rem;
}

.fee-notes h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.4rem;
}

.fee-notes ul {
    list-style-type: disc;
    margin-top: 1rem;
    padding-left: 2rem;
}

.fee-notes li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.guidelines-notes {
    margin: 2rem 0;
    padding-left: 2rem;
}

.guidelines-notes ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.guidelines-notes li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.reserved-list {
    margin-top: 2rem;
    padding-left: 2rem;
}

.reserved-item {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.reserved-item h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
}

.reserved-item ul {
    list-style: disc;
    padding-left: 2rem;
}

.reserved-item li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.loading-notes {
    margin: 2rem 0;
    padding-left: 2rem;
}

.loading-notes ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.loading-notes li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.space-photos {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
    padding-left: 2rem;
}

.space-photos img {
    border-radius: 4px;
    object-fit: cover;
}

@media (max-width: 768px) {
    .nav ul {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }

    .hero h1 {
        font-size: 2rem;
    }
}

.reservation-section {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    margin: 2rem 0;
}

.reservation-section h2 {
    margin-bottom: 2rem;
    color: #2c3e50;
    font-size: 1.8rem;
    padding-left: 2rem;
}

.reservation-notes {
    margin: 2rem 0;
    padding-left: 2rem;
}

.reservation-notes h3 {
    margin-bottom: 1rem;
    color: #2c3e50;
    font-size: 1.4rem;
}

.reservation-notes ol,
.reservation-notes ul {
    padding-left: 2rem;
    margin: 1rem 0;
}

.reservation-notes li {
    margin-bottom: 0.5rem;
    padding-left: 1rem;
}

.header h1 a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s;
}

.header h1 a:hover {
    opacity: 0.8;
} 