/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: white;
    background-color: #000000;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-black {
    background-color: #000000;
}

.text-white {
    color: white;
}

/* Hero Section */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 3rem 1rem;
}

.hero-image-container {
    width: 100%;
    max-width: 28rem;
    margin-bottom: 2rem;
}

.hero-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero-title {
    font-size: 2.5rem;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-info {
    text-align: center;
    color: #d1d5db;
}

.owner-name {
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.address-line {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

/* Content Container */
.content-container {
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1.5rem 3rem;
}

/* Content Sections */
.content-section {
    margin-bottom: 3rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

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

.list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.75rem;
    font-size: 1.125rem;
    line-height: 1.75;
    color: #d1d5db;
}

.bullet {
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Bullet Colors */
.list-item.blue .bullet {
    color: #60a5fa;
}

.list-item.green .bullet {
    color: #4ade80;
}

.list-item.purple .bullet {
    color: #a78bfa;
}

.list-item.orange .bullet {
    color: #fb923c;
}

/* Contact Section */
.contact-section {
    background-color: #111827;
    border-radius: 1rem;
    padding: 2rem;
    margin-top: 3rem;
}

.contact-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
    color: white;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    flex-shrink: 0;
    margin-right: 1rem;
    margin-top: 0.25rem;
}

.contact-icon.building {
    color: #60a5fa;
}

.contact-icon.mail {
    color: #4ade80;
}

.contact-icon.phone {
    color: #a78bfa;
}

.contact-icon.location {
    color: #fb923c;
}

.contact-label {
    font-weight: 600;
    color: white;
}

.contact-text {
    color: #d1d5db;
    margin-bottom: 0.25rem;
}

.contact-link {
    color: #60a5fa;
    text-decoration: none;
    transition: color 0.25s ease;
}

.contact-link:hover {
    color: #93c5fd;
}

.contact-address {
    color: white;
    font-weight: 500;
}

/* Responsive Design */
@media (min-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 3.75rem;
    }
}