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

body {
    font-family: 'Arial', sans-serif;
    background-color: #f9f9f9;
    color: #333;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 20px;
}

header {
    background-color: #bde0fe;
    color: #333;
    padding: 60px 0;
    text-align: center;
}

header h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

header p {
    font-size: 20px;
    color: #555;
}

section {
    padding: 40px 0;
}

section h2 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #333;
    text-align: center;
}

.about p, .contact p {
    text-align: center;
    font-size: 18px;
    line-height: 1.6;
    color: #555;
}

.gallery .image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    justify-items: center;
}

.image-item {
    text-align: center;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

button {
    background-color: #ffafcc;
    border: none;
    padding: 10px 20px;
    color: white;
    margin-top: 10px;
    border-radius: 5px;
    cursor: pointer;
}

button a {
    color: white;
    text-decoration: none;
}

button:hover {
    background-color: #ff85a1;
}

.details ul {
    list-style-type: disc;
    margin-left: 40px;
    margin-bottom: 20px;
}

.apartment-nav {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

.apartment-nav a {
    color: #007bff;
    text-decoration: none;
}

.apartment-nav a:hover {
    text-decoration: underline;
}

footer {
    background-color: #fcd5ce;
    color: #333;
    padding: 20px 0;
    text-align: center;
}

footer p {
    font-size: 14px;
    color: #666;
}
