* {
    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-color: #fafaf8;
}

main {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

section {
    margin-bottom: 80px;
}

h1 {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #1a1a1a;
}

h2 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #1a1a1a;
}

p {
    margin-bottom: 16px;
    color: #555;
    line-height: 1.7;
}

a {
    color: #0066cc;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Header with Logo */
.header {
    display: flex;
    justify-content: center;
    padding: 40px 20px 20px 20px;
    background-color: #fafaf8;
}

.logo {
    height: 80px;
    width: auto;
    object-fit: contain;
}

/* Hero Section */
.hero {
    margin-bottom: 100px;
}

.hero h1 {
    font-size: 2.75rem;
}

.hero-subtext {
    font-size: 1.1rem;
    color: #666;
    margin-top: 20px;
}

/* About Section */
.about {
    margin-bottom: 80px;
}

.about p {
    color: #555;
}

/* Building Section */
.building {
    margin-bottom: 80px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    color: #555;
}

.features-list li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #999;
}

/* Contact Section */
.contact {
    margin-bottom: 80px;
}

.contact p {
    margin: 16px 0;
}

/* Footer */
footer {
    border-top: 1px solid #ddd;
    padding-top: 40px;
    margin-top: 100px;
    text-align: center;
    color: #999;
    font-size: 0.95rem;
}

footer p {
    margin: 8px 0;
    color: #999;
}

/* Mobile First Responsive */
@media (max-width: 600px) {
    main {
        padding: 40px 16px;
    }

    h1 {
        font-size: 2rem;
    }

    .hero h1 {
        font-size: 1.8rem;
    }

    h2 {
        font-size: 1.25rem;
    }

    p {
        font-size: 0.95rem;
    }

    section {
        margin-bottom: 60px;
    }
}
