@font-face {
    font-family: 'Krungthep';
    src: url('Krungthep.woff');
}

body, h1, h2, p, ul {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

h1, h2 {
    font-family: "Krungthep";
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #003659;
    background-color: #f4f4f4;
    font-size: 18px;
}

header {
    background-color: #003559;
    color: white;
    padding: 20px;
    text-align: center;
}

.header-text {
    display: flex;
    gap: 20px;
    align-items: baseline;
    justify-content: center;
    text-decoration: none;
}

@media (max-width: 700px) {
    .header-text {
        flex-direction: column;
        gap: 0;
    }
}

.header-text h2 {
    color: white !important;
    margin-bottom: 0;
}

.header-text:hover {
    color: #ccc;
    text-decoration: none;
}

.header-container h1 {
    font-size: 36px;
    letter-spacing: 1px;
}

section:nth-child(odd) {
    background-color: #003659;
    color: white;
}

section:nth-child(odd) h2 {
    color: white;
}

section, footer {
    background-color: white;
    margin: 0 auto;
    padding: 20px 20px 30px;
    max-width: 800px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    border-radius: 1px;
}

h2 {
    font-size: 24px;
    color: #003559;
    margin-bottom: 10px;
}

ul {
    margin-block: 10px;
}

ul li {
    margin-bottom: 10px;
    padding-left: 20px;
    margin-left: 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    padding: 20px;
}
