  /* Reset and Base Styles */
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
header {
    background-color: white;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

.logo {
    padding: 10px 0;
    display: flex;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
}

.logo img {
    height: 30px;
}

/* Hero Section */
.hero {
    background-image: url('./imgs/1.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    position: relative;
    color: white;
    display: flex;
    align-items: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 5%;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero p {
    font-size: 1rem;
    max-width: 600px;
    margin-bottom: 2rem;
}

.btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #E53935;
    color: white;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s;
}

.btn:hover {
    background-color: #D32F2F;
}

/* Features Section */
.section-title {
    text-align: center;
    margin: 4rem 0 2rem;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background-color: #E53935;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.features {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.feature {
    flex: 0 0 calc(33.333% - 20px);
    margin-bottom: 2rem;
    padding: 20px;
    border-top: 1px solid #e0e0e0;
}

.feature h3 {
    margin-bottom: 1rem;
    color: #E53935;
    font-weight: 500;
}

.feature p {
    font-size: 0.9rem;
    color: #666;
}

/* Reasons Section */
.reasons {
    background-color: #222;
    color: white;
    padding: 4rem 0;
}

.reasons h2 {
    color: white;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 3rem;
}

.reason {
    text-align: center;
    padding: 0 20px;
}

.reason h3 {
    margin-bottom: 1rem;
    font-weight: 500;
}

.reason p {
    font-size: 0.9rem;
    color: #ccc;
}

/* Heart of House Section */
.heart-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin: 4rem 0;
}

.heart-content {
    flex: 1;
}

.heart-image {
    flex: 1;
}

.heart-content h2 {
    margin-bottom: 1rem;
}

.heart-content p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #666;
}

/* Room Categories */
.room-categories {
    margin-bottom: 4rem;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.room {
    border: 1px solid #e0e0e0;
    padding: 20px;
}

.room h3 {
    text-align: center;
    margin-bottom: 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid #e0e0e0;
}

.room p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.room-features {
    margin-top: 1rem;
}

.room-features h4 {
    margin-bottom: 0.5rem;
}

.room-features ul {
    list-style-type: none;
}

.room-features li {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    position: relative;
    padding-left: 20px;
}

.room-features li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E53935;
}

/* Testimonials */
.testimonials {
    margin-bottom: 4rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial {
    border: 1px solid #e0e0e0;
    padding: 20px;
}

.testimonial-title {
    font-size: 1.1rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    position: relative;
}

.testimonial-title::after {
    content: '';
    display: block;
    width: 30px;
    height: 2px;
    background-color: #E53935;
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.testimonial-content {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.testimonial-author {
    font-weight: 500;
    font-style: italic;
    text-align: right;
}

/* Connected Houses */
.connected-houses {
    margin-bottom: 4rem;
}

.houses-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.house {
    margin-bottom: 2rem;
}

.house-image {
    margin-bottom: 1rem;
    height: 250px;
    overflow: hidden;
}

.house-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.house-image img:hover {
    transform: scale(1.05);
}

.house h3 {
    margin-bottom: 0.5rem;
}

.house p {
    font-size: 0.9rem;
    color: #666;
}

/* Reservation Form */
.reservation {
    margin-bottom: 4rem;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    border: 1px solid #e0e0e0;
}

.form-group {
    margin-bottom: 1rem;
}

.form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #e0e0e0;
    font-size: 1rem;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    padding: 2rem 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.footer-info {
    flex: 1;
    min-width: 250px;
    margin-bottom: 1rem;
}

.footer-links {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
}

.footer-links a {
    margin-bottom: 0.5rem;
    color: #ccc;
}

.footer-links a:hover {
    color: white;
}

.copyright {
    margin-top: 2rem;
    font-size: 0.8rem;
    color: #ccc;
}

/* Cookie Consent */
.cookie-consent {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: white;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
    z-index: 1000;
    max-width: 400px;
    display: none;
}

.cookie-consent h2 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.cookie-consent p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.cookie-btn {
    padding: 10px;
    text-align: center;
    cursor: pointer;
}

.accept-all {
    background-color: #E53935;
    color: white;
}

.accept-necessary {
    background-color: white;
    border: 1px solid #ccc;
}

.cookie-settings {
    background-color: white;
    border: 1px solid #ccc;
}

/* Responsive Design */
@media (max-width: 992px) {
    .features {
        justify-content: center;
    }
    
    .feature {
        flex: 0 0 calc(50% - 20px);
    }
    
    .reasons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .heart-section {
        flex-direction: column;
    }
    
    .rooms-grid,
    .testimonials-grid,
    .houses-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .feature {
        flex: 0 0 100%;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
    }
    
    .footer-info,
    .footer-links {
        margin-bottom: 2rem;
    }
}