
/* styles.css - Improved Design */

body {
    font-family: 'Helvetica Neue', Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f5f7fa;
    color: #333;
}

.container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

header {
    text-align: center;
    margin-bottom: 50px;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.logo {
    max-width: 200px;
    height: auto;
}

h1 {
    font-size: 2.8em;
    margin: 5px 0;
    color: #2c3e50;
}

.tagline {
    font-size: 1.2em;
    color: #7f8c8d;
    margin-top: 5px;
    margin-bottom: 30px;
}

main {
    background-color: #ffffff;
    padding: 30px;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.about, .contact {
    margin-bottom: 40px;
}

h2 {
    font-size: 2em;
    color: #34495e;
    margin-bottom: 15px;
    border-bottom: 2px solid #ecf0f1;
    padding-bottom: 5px;
}

p {
    line-height: 1.6;
    font-size: 1.1em;
    color: #555;
}

a {
    color: #3498db;
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 50px;
    color: #95a5a6;
    font-size: 0.9em;
}
