/* Reset default margin and padding */
body, h1, h2, ul, li, p {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Roboto', Arial, sans-serif;
    line-height: 1.6;
    background-color: #f5f5f5;
    padding: 20px;
    color: #333;
    transition: all 0.3s ease;
}

header {
    background-color: #3f51b5;
    color: white;
    padding: 10px 20px;
    transition: all 0.3s ease;
}

header h1 {
    margin: 0;
}

.container {
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

section {
    margin-bottom: 30px;
}

h2 {
    font-size: 2em;
    color: #3f51b5;
    border-bottom: 2px solid #3f51b5;
    padding-bottom: 5px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
    padding-left: 0;
}

ul.history li,
ul.contact li {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.contact li i,
.history li i {
    margin-right: 10px;
    color: #3f51b5;
}

.contact li span {
    font-weight: bold;
}

a {
    color: #3f51b5;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.fa-user-circle {
    font-size: 3em;
    vertical-align: middle;
    margin-right: 10px;
}

.fa-envelope, .fa-map-marker-alt {
    font-size: 1.2em;
    margin-right: 5px;
}

body:hover {
    filter: brightness(90%);
}

header:hover {
    filter: brightness(110%);
}

.container:hover {
    transform: scale(1.02);
}

h2:hover {
    color: #4f62ff;
    border-color: #4f62ff;
}