/* ===== Content Section ===== */
.container {
    width: min(960px, calc(100% - 40px));
    margin: 0 auto;
    padding: 40px 0;
    color: #222;
}

.section {
    margin-bottom: 30px;
}

.section h2 {
    font-size: 26px;
    font-weight: 700;
    color: #f58025; /* Orange headings */
    margin-bottom: 12px;
}

.section p {
    font-size: 16px;
    line-height: 1.7;
    color: #333;
    margin: 0;
}

/* ===== Contact Form Panel ===== */
.panel {
    background: #f7f7f7; /* light grey */
    padding: 50px 0;
    margin-top: 40px;
}

.panel .wrap {
    width: min(960px, calc(100% - 40px));
    margin: 0 auto;
}

.panel h3 {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #111;
}

.panel .lead {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    max-width: 800px;
    margin-bottom: 25px;
}

/* ===== Form Grid ===== */
form .grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

form .grid .full {
    grid-column: 1 / -1;
}

input, select, textarea {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    color: #333;
}

textarea {
    min-height: 130px;
    resize: vertical;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #bbb;
    box-shadow: 0 0 0 2px rgba(0,0,0,0.05);
}

/* Custom select arrow */
select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #fff url("data:image/svg+xml;utf8,<svg fill='%23999' height='20' viewBox='0 0 24 24' width='20' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>") no-repeat right 12px center;
    background-size: 14px;
}

/* Submit Button */
.actions {
    margin-top: 20px;
}

.btn {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 2px;
    cursor: pointer;
    transition: 0.2s ease;
}

.btn:hover {
    background: #333;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
    form .grid {
        grid-template-columns: 1fr;
    }

    .panel, .container {
        padding: 30px 20px;
    }

    .section h2, .panel h3 {
        font-size: 22px;
    }
    .bg .mb-only{
        margin-top:1rem;
    }
}

