.get-involved-hero {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin: 0;
}

.get-involved-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/get-involved-hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    filter: grayscale(100%);
}

.get-involved-hero-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.get-involved-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.get-involved-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 36px;
    line-height: 1.2;
    background: linear-gradient(90deg, rgba(255, 87, 34, 1) 13%, rgba(255, 121, 78, 1) 53%, rgba(255, 87, 34, 1) 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
}


.support-form-section {
    background-color: #ffffff;
    padding: 60px 0 80px;
    width: 100%;
}

.support-form-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.219em;
    background: linear-gradient(90deg, rgba(255, 87, 34, 1) 13%, rgba(255, 121, 78, 1) 53%, rgba(255, 87, 34, 1) 88%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    margin-bottom: 40px;
}

.support-form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.support-form {
    background-color: #F2F2F2;
    border-radius: 30px;
    padding: var(--space-card-v) var(--space-card-h);
    box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group-full {
    margin-bottom: 25px;
}

.form-group label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #000000;
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    padding: 14px 18px;
    border: none;
    border-radius: 12px;
    background-color: #FFFFFF;
    color: #000000;
    outline: none;
    transition: all 0.3s ease;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999999;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    box-shadow: 0 0 0 2px rgba(255, 87, 34, 0.2);
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L6 6L11 1' stroke='%23000000' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 18px center;
    padding-right: 45px;
}

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

.form-submit-btn {
    display: block;
    width: 250px;
    margin: 30px auto 0;
    padding: 16px 32px;
    background-color: #FF5722;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 18px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px #ff794EE3;
}

.form-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px #ff794EE3;
}


<<<<<<< HEAD
=======
.cta-banner-section {
    background-color: #FF5722;
    padding: var(--space-section-v) var(--space-section-h);
    text-align: center;
    width: 100%;
}

.cta-banner-title {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 32px;
    line-height: 1.3;
    color: #FFFFFF;
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.cta-banner-description {
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 18px;
    line-height: 1.5;
    color: #FFFFFF;
    max-width: 700px;
    margin: 0 auto 40px;
}

.cta-banner-btn {
    display: inline-block;
    padding: 16px 48px;
    background-color: #FFC107;
    color: #000000;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 20px;
    border: none;
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0px 4px 12px rgba(255, 193, 7, 0.3);
}

.cta-banner-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0px 6px 16px rgba(255, 193, 7, 0.4);
}


>>>>>>> 14be869e96403e5a49222a7a0af077fbc6965b9c


@media (max-width: 1024px) {
    .get-involved-hero {
        height: 400px;
    }

    .get-involved-hero-title {
        font-size: 52px;
    }

    .support-form {
        padding: 50px 40px;
    }
}


@media (max-width: 768px) {
    .get-involved-hero {
        height: 350px;
    }

    .get-involved-hero-title {
        font-size: 48px;
    }

    .support-form {
        padding: 40px 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}


@media (max-width: 480px) {
    .get-involved-hero {
        height: 300px;
    }

    .get-involved-hero-title {
        font-size: 36px;
    }

    .support-form {
        padding: 32px 20px;
    }

    .form-label {
        font-size: 13px;
    }

    .form-input,
    .form-textarea {
        font-size: 14px;
        padding: 10px 14px;
    }

    .form-submit-btn {
        width: 100%;
        max-width: 280px;
        font-size: 16px;
        padding: 14px 28px;
    }
}

a {
    color: inherit;
    text-decoration: none;
}