body {
    margin: 0;
    font-family: 'Segoe UI', Arial, sans-serif;
    background: #f8f9fa;
    color: #222;
}
.container {
    width: 90%;
    max-width: 1100px;
    margin: 0 auto;
}

.header-flex {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    position: relative;
    min-height: 160px;
}

.header-logo {
    width: 160px;
    height: auto;
    align-self: flex-end;
    margin-left: 30px;
    margin-bottom: 10px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 10px 16px;
    object-fit: contain;
}


.header-content {
    text-align: left;
}

.header-cta {
    position: absolute;
    right: 0;
    bottom: 0;
    margin: 20px;
}
header {
    background: linear-gradient(120deg, #0077b6 60%, #48cae4 100%);
    color: #fff;
    padding: 60px 0 40px 0;
    text-align: center;
}
header h1 {
    margin-bottom: 10px;
    font-size: 2.5rem;
}
header p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}
.cta-btn {
    background: #ffb703;
    color: #222;
    padding: 14px 32px;
    border: none;
    border-radius: 30px;
    font-size: 1.1rem;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.2s;
}
.cta-btn:hover {
    background: #ffd166;
}
.featured-listings {
    background: #fff;
    padding: 50px 0;
}
.featured-listings h2 {
    text-align: center;
    margin-bottom: 40px;
}
.listings {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.listing {
    background: #f1f1f1;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 20px;
    width: 300px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.listing img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 15px;
}
.listing:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 8px 24px rgba(0,0,0,0.13);
}
.listing h3 {
    margin: 10px 0 5px 0;
}
.testimonials {
    background: #e0f7fa;
    padding: 50px 0;
}
.testimonials h2 {
    text-align: center;
    margin-bottom: 30px;
}
.testimonial-list {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
    justify-content: center;
}
.testimonial {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
    padding: 25px 20px;
    width: 320px;
    font-style: italic;
    text-align: center;
}
.testimonial span {
    display: block;
    margin-top: 15px;
    font-style: normal;
    color: #0077b6;
    font-weight: bold;
}
.contact {
    background: #fff;
    padding: 50px 0;
}
.contact h2 {
    text-align: center;
    margin-bottom: 30px;
}
form {
    max-width: 400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 18px;
}
form input, form textarea {
    padding: 12px;
    border: 1px solid #bdbdbd;
    border-radius: 6px;
    font-size: 1rem;
    resize: none;
}
form button {
    background: #0077b6;
    color: #fff;
    border: none;
    border-radius: 30px;
    padding: 14px 0;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.2s;
}
form button:hover {
    background: #023e8a;
}
footer {
    background: #222;
    color: #fff;
    text-align: center;
    padding: 18px 0;
    font-size: 1rem;
    margin-top: 0;
}