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

body {
    font-family: 'Montserrat', sans-serif;
    background: #f9f5f0;
    color: #3a3a3a;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    line-height: 1.6;
}

.container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    max-width: 1200px;
    justify-content: space-between;
    padding: 2rem;
}

main {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    margin-bottom: 1rem;
    color: #111111;
    letter-spacing: 1px;
}

.tagline {
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    margin-bottom: 1.5rem;
    color: #b83b3b;
}

.description {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 2rem;
    color: #5a5a5a;
}

.divider {
    width: 80px;
    height: 3px;
    background-color: #b83b3b;
    margin: 2rem auto;
}

footer {
    font-size: 0.9rem;
    color: #888;
    padding: 1rem 0;
    width: 100%;
    border-top: 1px solid #e0e0e0;
}

footer p {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }

    .tagline {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2.5rem;
    }

    .tagline {
        font-size: 1.2rem;
    }

    .description {
        font-size: 1rem;
    }
}
