body {
    font-family: Arial, sans-serif;
    margin: 20px;
}
h2 {
    background: #2c4f7c;
    color: white;
    padding: 8px;
}
.section {
    margin-bottom: 20px;
    border: 1px solid #ccc;
    padding: 10px;
}
.row {
    display: flex;
    gap: 10px;
    margin-bottom: 8px;
}
.row label {
    min-width: 150px;
}
input[type="text"], input[type="email"] {
    flex: 1;
    padding: 5px;
}
.checkbox-group {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.submit-btn {
    background: #2c4f7c;
    color: white;
    padding: 10px 30px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    cursor: pointer;
    margin-top: 20px;
}
.submit-btn:hover {
    background: #1e3a5f;
}

.header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #f8f9fa;
    padding: 30px 40px;
    border-bottom: 3px solid #2c4f7c;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    border-radius: 10px;
}

.logo img {
    max-height: 80px;
    width: auto;
}

.company-info {
    text-align: right;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
}

.company-info div {
    margin-bottom: 5px;
}

.company-info div:first-child {
    font-weight: bold;
    font-size: 16px;
    margin-bottom: 10px;
}


.logo img {
    max-height: 80px;
}
