* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f9fa;
    padding-top: 50px;
}

.container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 30px;
    text-align: center;
}

header {
    margin-bottom: 10vh;
    padding: 30px 0;
}

.logo img {
    max-width: 150px;
    height: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

main {
    margin-bottom: 60px;
}

.intro {
    margin-bottom: 50px;
    padding: 0 20px;
}

h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: #2c3e50;
    font-weight: 700;
}

p {
    margin-bottom: 10px;
}

.tagline {
    font-size: 1.2rem;
    color: #7f8
}

.legal {
    font-size: 0.8rem;
    color: #999;
    margin-top: 30vh;
}

a {
    color: #333;
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: #000;
    text-decoration: underline;
}