@font-face {
    font-family: 'Kanit';
    src: url('/fonts/Kanit.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Kanit', sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    background-color: #f5f5f5;
}

.header {
    background-color: #00242e;
    color: white;
    padding: 10px 20px;
    font-size: 14px;
}

.header a{
    text-decoration: none;
    color: white;
}

.main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

.logo {
    width: 300px;
    height: auto;
}

.company-info h1 {
    color: #00242e;
    font-size: 52px;
    font-weight: bold;
    line-height: 0.8;
}

.company-info h2 {
    color: #00242e;
    font-size: 32px;
    font-weight: normal;
}

.contact-form {
    max-width: 400px;
    width: 100%;
}

.contact-form h1 {
    color: #00242e;
    font-size: 36px;
    text-align: center;
    margin-bottom: 20px;
}

.form-description {
    color: #666;
    text-align: center;
    margin-bottom: 30px;
    line-height: 1.5;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    color: #333;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: none;
    background-color: #e8e8e8;
    border-radius: 4px;
    font-family: 'Kanit', sans-serif;
    font-size: 14px;
}

.form-group textarea {
    height: 120px;
    resize: vertical;
}

.submit-btn {
    width: 150px;
    background-color: #d32f2f;
    color: white;
    padding: 12px 24px;
    border: none;
    border-radius: 25px;
    font-family: 'Kanit', sans-serif;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    display: block;
    margin: 30px auto 0;
}

.submit-btn:hover {
    background-color: #b71c1c;
}

.footer {
    background-color: #00242e;
    color: white;
    padding: 30px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-left h3 {
    font-size: 32px;
    line-height: 0.8;
}

.footer-left p {
    font-size: 18px;
    color: #ccc;
}

.footer-right a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    font-weight: 500;
}

.footer-right a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .logo-section {
        flex-direction: column;
        text-align: center;
        gap: 20px;
    }
    
    .company-info h1 {
        font-size: 36px;
    }
    
    .company-info h2 {
        font-size: 24px;
    }
    
    .footer {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}