body {
    font-family: 'PT Serif', serif;
    background-color: #ffffff;
    color: #000;
    margin: 0;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    min-height: 100vh;
}

.container {
    max-width: 700px;
}

.logo {
    max-width: 480px;
    height: auto;
    margin-bottom: 40px;
}

.tagline {
    font-size: 32px;
    margin-bottom: 0; /* reduce to 0 for tightest stacking */
    line-height: 1.1; /* tightens vertical spacing */
}

.sub-tagline {
    font-size: 20px;
    font-weight: 400;
    margin-top: 0; /* remove top spacing for maximum tightness */
    margin-bottom: 35px;
    line-height: 1.2; /* tighter line-height for neatness */
}

.description {
    font-size: 20px;
    line-height: 1.6;
    margin-bottom: 40px;
}

.contact {
    font-size: 20px;
    line-height: 1.3;
}

.contact h3 {
    font-weight: bold; /* making "Get in touch" bold */
    margin-bottom: 0px; /* tighten spacing significantly */
}

.contact p {
    margin-top: 0; /* ensure email is very close to header */
}

.contact a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact a:hover {
    color: #555;
}