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

body {
    font-family: 'Segoe UI', 'Arial', sans-serif;
    line-height: 1.8;
    color: #3e2723;
    background: #f5f1eb;
    background-image: linear-gradient(135deg, #f5f1eb 0%, #ede8df 50%, #e8e0d5 100%);
}

header {
    background: rgba(245, 241, 235, 0.98);
    box-shadow: 0 2px 8px rgba(139, 90, 43, 0.15);
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #8b5a2b;
}

nav {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    font-weight: 700;
    color: #8b5a2b;
    letter-spacing: 0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 3rem;
}

.nav-menu a {
    text-decoration: none;
    color: #5d4037;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s;
    position: relative;
}

.nav-menu a:hover {
    color: #8b5a2b;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #8b5a2b, #a67c52);
    transition: width 0.3s;
}

.nav-menu a:hover::after {
    width: 100%;
}

.hero {
    background: linear-gradient(135deg, #f5f1eb 0%, #ede8df 50%, #e8e0d5 100%);
    padding: 10rem 2rem 8rem;
    text-align: center;
    margin-bottom: 8rem;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('https://img2.baidu.com/it/u=3693695772,720906035&fm=253&fmt=auto&app=138&f=JPEG?w=800&h=1067');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #6b4e3d;
    margin-bottom: 2rem;
    line-height: 1.3;
}

.hero-subtitle {
    font-size: 1.3rem;
    color: #5d4037;
    line-height: 1.8;
    font-weight: 400;
}

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

.buildings-section, .styles-section {
    margin-bottom: 8rem;
}

.section-title-area {
    text-align: center;
    margin-bottom: 5rem;
}

.section-title-area h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #6b4e3d;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.2rem;
    color: #5d4037;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.buildings-showcase {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
}

.building-hero {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(139, 90, 43, 0.15);
    transition: transform 0.3s, box-shadow 0.3s;
}

.building-hero:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(139, 90, 43, 0.2);
}

.building-hero-image {
    width: 100%;
    height: 450px;
    overflow: hidden;
}

.hero-building-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.building-hero:hover .hero-building-img {
    transform: scale(1.05);
}

.building-hero-info {
    padding: 3rem 2.5rem;
}

.building-badge {
    display: inline-block;
    padding: 0.5rem 1.2rem;
    background: linear-gradient(135deg, #8b5a2b, #a67c52);
    color: #ffffff;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.building-hero-info h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #6b4e3d;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.building-hero-info p {
    font-size: 1.05rem;
    color: #5d4037;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.building-highlights {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5d4037;
    font-size: 0.95rem;
    font-weight: 500;
}

.highlight-icon {
    font-size: 1.3rem;
}

.buildings-column {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.building-box {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
}

.building-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(139, 90, 43, 0.18);
}

.building-box-image {
    width: 200px;
    flex-shrink: 0;
    overflow: hidden;
}

.building-box-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.building-box:hover .building-box-img {
    transform: scale(1.1);
}

.building-box-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.building-label {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: #f0e6d8;
    color: #8b5a2b;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 15px;
    margin-bottom: 1rem;
}

.building-box-content h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #6b4e3d;
    margin-bottom: 0.8rem;
}

.building-box-content p {
    font-size: 0.95rem;
    color: #5d4037;
    line-height: 1.7;
}

.styles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
}

.style-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.12);
    transition: transform 0.3s, box-shadow 0.3s;
}

.style-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(139, 90, 43, 0.2);
}

.style-image-frame {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.style-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.style-card:hover .style-image {
    transform: scale(1.1);
}

.style-details {
    padding: 2rem;
}

.style-details h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #6b4e3d;
    margin-bottom: 1rem;
}

.style-details p {
    font-size: 0.95rem;
    color: #5d4037;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.style-features {
    list-style: none;
}

.style-features li {
    padding: 0.5rem 0;
    color: #5d4037;
    font-size: 0.9rem;
    position: relative;
    padding-left: 1.5rem;
}

.style-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #8b5a2b;
    font-weight: bold;
}

.contact-section {
    background: linear-gradient(135deg, #f5f1eb 0%, #ede8df 100%);
    padding: 6rem 2rem;
    margin-bottom: 6rem;
    border-radius: 20px;
}

.contact-wrapper {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.contact-wrapper h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b4e3d;
    margin-bottom: 1.5rem;
}

.contact-wrapper p {
    font-size: 1.1rem;
    color: #5d4037;
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.contact-info {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.12);
}

.contact-info p {
    font-size: 1rem;
    color: #5d4037;
    margin-bottom: 1rem;
}

.contact-info a {
    color: #8b5a2b;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: #6b4e3d;
}

.privacy-section {
    margin-bottom: 6rem;
}

.privacy-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    padding: 4rem;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(139, 90, 43, 0.12);
}

.privacy-wrapper h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #6b4e3d;
    margin-bottom: 3rem;
    text-align: center;
}

.privacy-text h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #6b4e3d;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.privacy-text h2:first-of-type {
    margin-top: 0;
}

.privacy-text p {
    font-size: 1rem;
    color: #5d4037;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-text a {
    color: #8b5a2b;
    text-decoration: none;
    font-weight: 500;
}

.privacy-text a:hover {
    color: #6b4e3d;
    text-decoration: underline;
}

footer {
    background: linear-gradient(135deg, #6b4e3d 0%, #5a3f2f 100%);
    color: #ffffff;
    padding: 4rem 2rem 2rem;
    margin-top: 6rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand {
    text-align: left;
}

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.5rem;
}

.footer-tagline {
    font-size: 0.95rem;
    color: #d7ccc8;
    font-weight: 300;
}

.footer-nav {
    display: flex;
    justify-content: flex-end;
    gap: 2.5rem;
    flex-wrap: wrap;
    align-items: flex-start;
}

.footer-nav a {
    color: #d7ccc8;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
    font-weight: 400;
}

.footer-nav a:hover {
    color: #ffffff;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.footer-bottom p {
    color: #d7ccc8;
    font-size: 0.9rem;
    font-weight: 300;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .buildings-showcase {
        grid-template-columns: 1fr;
    }
    
    .styles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .building-box {
        flex-direction: column;
    }
    
    .building-box-image {
        width: 100%;
        height: 250px;
    }
}

@media (max-width: 768px) {
    nav {
        padding: 1rem 2rem;
        flex-direction: column;
        gap: 1.5rem;
    }

    .nav-menu {
        gap: 2rem;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
    }

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

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .section-title-area h2 {
        font-size: 2.5rem;
    }

    .styles-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-nav {
        justify-content: center;
    }

    .privacy-wrapper {
        padding: 2.5rem 2rem;
    }
}
