@import url("privacy-style.css");

:root {
    --primary-color: #2E86AB;
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
}

/* Header */
header {
    background: var(--primary-color);
    color: #fff;
    padding: 12px 24px;
    height: auto;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: var(--shadow-md);
    z-index: 1100;
    flex-wrap: wrap;
    gap: 15px;
}

.header-title {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

header h1 {
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    letter-spacing: 0.02em;
    margin-bottom: 0; /* Reset h1 margin from privacy-style */
    border-bottom: none; /* Reset h1 border from privacy-style */
    padding-bottom: 0; /* Reset h1 padding from privacy-style */
}

.subtitle {
    font-size: 0.9rem;
    opacity: 0.85;
    white-space: nowrap;
    font-weight: 400;
}

.header-info {
    font-size: 0.8rem;
    text-align: right;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0.9;
}

.header-info p {
    margin-bottom: 2px;
}

/* Mobile Header */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        align-items: flex-start;
        padding: 12px 16px;
        gap: 10px;
    }
    .header-info {
        text-align: left;
        width: 100%;
        border-top: 1px solid rgba(255,255,255,0.15);
        padding-top: 8px;
    }
}

/* Form Styles */
.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 16px;
    box-sizing: border-box; /* Ensure padding doesn't affect width */
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #2E86AB;
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 134, 171, 0.1);
}

.submit-btn {
    background-color: #E63946;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.2s;
    display: inline-block;
}

.submit-btn:hover {
    background-color: #d62828;
}

.contact-note {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
    background-color: #f0f7fa;
    padding: 15px;
    border-radius: 6px;
    border-left: 4px solid #2E86AB;
}
