/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&display=swap');

body {
    font-family: 'Inter', sans-serif;
    background-color: #f4f7f6;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 40px 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background: #ffffff;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.05);
}

h1 {
    color: #2c3e50;
    border-bottom: 2px solid #3498db;
    padding-bottom: 15px;
    margin-top: 0;
    margin-bottom: 25px;
    font-size: 24px;
    text-align: center;
}

p {
    margin-bottom: 20px;
    font-size: 15px;
    color: #555;
}

ul {
    list-style-type: none;
    padding-left: 0;
    margin-bottom: 30px;
}

li {
    background: #fdfdfd;
    margin-bottom: 10px;
    padding: 12px 18px;
    border-left: 4px solid #3498db;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
    font-size: 15px;
}

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

a:hover {
    text-decoration: underline;
}

.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eaeaea;
    text-align: center;
    background-color: #f9fbfc;
    border-radius: 6px;
    padding: 20px;
}

.contact-info p {
    margin: 5px 0;
    font-weight: 600;
}