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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
}

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

header {
    text-align: center;
    padding: 100px 20px;
    background: 
        linear-gradient(rgba(90, 103, 216, 0.85), rgba(118, 75, 162, 0.85)),
        url('https://upload.wikimedia.org/wikipedia/commons/1/17/Naadam_rider_2.jpg') center/cover no-repeat;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

h1 {
    font-size: 3em;
    color: #ffffff;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.tagline {
    font-size: 1.2em;
    color: #f7fafc;
    font-weight: 300;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

main {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

section {
    margin-bottom: 40px;
}

section:last-child {
    margin-bottom: 0;
}

h2 {
    color: #5a67d8;
    margin-bottom: 20px;
    font-size: 2em;
    border-bottom: 2px solid #e2e8f0;
    padding-bottom: 10px;
}

.about p, .coming-soon p {
    color: #4a5568;
    font-size: 1.1em;
    line-height: 1.8;
}

.properties-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.property-card {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: block;
    text-align: center;
}

.property-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.property-card h3 {
    font-size: 1.3em;
    margin-bottom: 8px;
    font-weight: 600;
}

.property-card p {
    font-size: 0.95em;
    opacity: 0.9;
    font-weight: 300;
}

footer {
    margin-top: 40px;
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

footer p {
    color: #718096;
    margin: 5px 0;
}

.contact {
    font-size: 0.95em;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2em;
    }
    
    .tagline {
        font-size: 1em;
    }
    
    header {
        padding: 40px 20px;
    }
    
    main {
        padding: 25px;
    }
    
    .properties-grid {
        grid-template-columns: 1fr;
    }
}