* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.7;
    color: #2d3436;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding: 40px 20px;
}

.container {
    max-width: 850px;
    margin: 0 auto;
    background: #ffffff;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.logo {
    width: 60px;
    height: 60px;
    background: #007AFF;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    font-weight: bold;
    font-size: 24px;
    margin-bottom: 50px;
}

.logo img{
    width: 100px;
    height: 100px;
    border-radius: 15px;

}

header {
    margin-bottom: 40px;
}

h1 {
    font-size: 2.2rem;
    color: #1e272e;
    margin-bottom: 10px;
}

h2 {
    font-size: 1.4rem;
    color: #007AFF;
    margin-top: 35px;
    margin-bottom: 15px;
    border-left: 4px solid #007AFF;
    padding-left: 15px;
}

ul {
    margin-left: 25px;
    margin-bottom: 15px;
}

li {
    margin-bottom: 8px;
}

.contact-box {
    margin-top: 50px;
    background: #f1f2f6;
    padding: 25px;
    border-radius: 12px;
}

footer {
    margin-top: 60px;
    text-align: center;
    font-size: 0.85rem;
    color: #a4b0be;
    border-top: 1px solid #eee;
    padding-top: 30px;
}
