.form-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('./Assets/read.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 5rem 0;
    text-align: center;
    margin: 2rem 0;
}

.form-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-content h2 {
    color: var(--whiteColor);
    font-size: 32px;
    margin-bottom: 1rem;
    font-family: "Gilda Display", serif;
}

.form-content p {
    color: var(--whiteColor);
    margin-bottom: 2rem;
    font-family: "Barlow", sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

.form-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: var(--primaryColor);
    color: var(--whiteColor);
    text-decoration: none;
    border-radius: 5px;
    font-family: "Barlow Condensed", sans-serif;
    font-weight: 500;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 2px solid var(--primaryColor);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.form-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--whiteColor);
    transition: all 0.4s ease;
    z-index: -1;
}

.form-button:hover {
    color: var(--primaryColor);
}

.form-button:hover:before {
    left: 0;
}

.form-icon {
    margin-right: 10px;
}

/* Animation for the section */
.form-content {
    animation: fadeIn 1s ease-in-out;
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive adjustments */
@media screen and (max-width: 768px) {
    .form-content {
        padding: 1.5rem;
    }
    
    .form-content h2 {
        font-size: 28px;
    }
    
    .form-button {
        padding: 12px 24px;
    }
}

@media screen and (max-width: 480px) {
    .form-content h2 {
        font-size: 24px;
    }
    
    .form-content p {
        font-size: 14px;
    }
    
    .form-button {
        padding: 10px 20px;
        font-size: 16px;
    }
}