/* General reset and layout */
body {
    font-family: 'Segoe UI', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
    padding: 0;
    background: #fff;
    color: #333;
}

form.pcp-form {
    max-width: 960px;
    margin: 0 auto;
    padding: 2rem;
    border: 1px solid #ccc;
    background-color: #f9f9f9;
}

h2.section-title {
    border-bottom: 2px solid #333;
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.4rem;
}

fieldset {
    border: none;
    margin-bottom: 2rem;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.3rem;
    text-transform: uppercase;
}

input[type="text"],
input[type="email"],
input[type="tel"],
input[type="date"],
input[type="number"],
select,
textarea {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
}

.pcp-input {
    width: 100%;
    padding: 0.5rem;
    margin-bottom: 1rem;
    border: 1px solid #aaa;
    border-radius: 4px;
    box-sizing: border-box;
}
textarea {
    min-height: 80px;
    resize: vertical;
}

.checkbox-group, .radio-group {
    margin-bottom: 1rem;
}

.checkbox-group label,
.radio-group label {
    display: inline-block;
    margin-right: 1rem;
    font-weight: normal;
}

.grid-2,
.grid-3 {
    display: grid;
    gap: 1rem;
}

.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .grid-2, .grid-3 {
        grid-template-columns: 1fr;
    }
}
.preliminary-banner {
    background-color: #872d10; /* rich dark red */
    color: white;
    padding: 2rem 2rem 1.5rem 2rem;
    font-family: Georgia, 'Times New Roman', Times, serif;
    clip-path: polygon(0% 0%, 97% 0%, 100% 100%, 3% 100%);
    position: relative;
    margin-bottom: 0; /* Remove margin to align with the footer */
}

.banner-content h1 {
    font-size: 2.2rem;
    font-weight: bold;
    margin: 0;
}

.banner-content p {
    font-size: 1.1rem;
    margin-top: 0.5rem;
    font-style: italic;
}

.banner-footer {
    text-align: right;
    color: #872d10;
    font-weight: 500;
    font-size: 1rem;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: linear-gradient(to right, transparent 0%, transparent 85%, #872d10 85%);
    clip-path: polygon(97% 0%, 100% 100%, 0% 100%, 3% 0%);
}

.banner-footer a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    background-color: #872d10;
    padding: 0.2rem 0.5rem;
    border-radius: 3px;
}

.section-header-banner {
    background-color: #872d10; /* Match the top-right banner color */
    color: white;
    padding: 1rem;
    clip-path: polygon(0% 0%, 97% 0%, 100% 100%, 0% 100%); /* Left side vertical, right side slanted */
    position: relative;
    margin-bottom: 2rem;
    width: fit-content; /* Adjust width to fit content */
}

.section-header-banner .banner-content h3 {
    font-size: 1.5rem;
    font-family: 'Segoe UI', sans-serif;
    margin: 0;
}
.pcp-required {
    color: red;
    font-weight: bold;
}

/* Added a new class to ensure inline display for label and span */
.inline-label {
    display: inline-block;
}
.pcp-label {
    font-weight: bold;
}
.pcp-label span {
    font-weight: normal;
}