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

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: #000;
    background: #fff;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 2rem;
}

.container {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.header-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
}

h1 {
    font-size: 3rem;
    font-weight: 400;
    color: #000;
    margin: 0;
    letter-spacing: 1px;
}

.subtitle {
    font-size: 1.1rem;
    color: #333;
    font-weight: 300;
    line-height: 1.7;
    max-width: 500px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    body {
        padding: 1rem;
    }
    
    h1 {
        font-size: 2.2rem;
    }
    
    .subtitle {
        font-size: 1rem;
    }

    .house-icon {
        width: 35px;
        height: 35px;
    }

    .header-group {
        gap: 0.8rem;
    }
}