/* Import custom fonts */
@font-face {
    font-family: 'VWHeadBold';
    src: url('../resources/VW-Head-Fonts/VWHeadBold.otf') format('opentype');
}
@font-face {
    font-family: 'VWHeadRegular';
    src: url('../resources/VW-Head-Fonts/VWHeadRegular.otf') format('opentype');
}
@font-face {
    font-family: 'VWTextBold';
    src: url('../resources/VW-Head-Fonts/VWTextBold.otf') format('opentype');
}
@font-face {
    font-family: 'VWTextLight';
    src: url('../resources/VW-Head-Fonts/VWTextLight.ttf') format('truetype');
}
@font-face {
    font-family: 'VWTextRegular';
    src: url('../resources/VW-Head-Fonts/VWTextRegular.otf') format('opentype');
}

/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'VWTextRegular', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f8f8f8;
    padding: 20px;
}

/* Header Style */
header {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 30px;
}
header img {
    height: 60px;
    margin-right: 15px;
}
header h1 {
    font-family: 'VWHeadBold', sans-serif;
    font-size: 1.8rem;
    color: #333;
}

/* Main Content */
h2 {
    font-family: 'VWHeadRegular', sans-serif;
    font-size: 1.5rem;
    color: #444;
    margin-bottom: 15px;
}
p {
    font-family: 'VWTextLight', sans-serif;
    font-size: 1rem;
    margin-bottom: 20px;
    color: #555;
}
ul {
    margin-left: 20px;
    margin-bottom: 20px;
    color: #555;
}
ul li {
    font-family: 'VWTextRegular', sans-serif;
    margin-bottom: 10px;
    color: #555;
}
a {
    color: #007BFF;
    text-decoration: none;
}
a:hover {
    text-decoration: underline;
}

/* Footer Info */
footer {
    margin-top: 30px;
    text-align: center;
    font-family: 'VWTextLight', sans-serif;
    color: #777;
}
