body {
    margin: 0;
    font-family: 'Segoe UI', sans-serif;
    background-color: #141b41;
    overflow-x: hidden;
}

/* Background Section */
.cf-contact-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    background-image: url("/images/Contactimg.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 15px;
    box-sizing: border-box;
    z-index: 0;
}

/* Container */
.cf-contact-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-width: 1200px;
    width: 100%;
    background-color: rgba(20, 27, 65, 0.95);
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    overflow: hidden;
}

/* Info Section */
.cf-contact-info {
    flex: 1 1 50%;
    padding: 40px;
    background-color: rgba(26, 32, 72, 0.95);
    color: #dcdcdc;
}

.cf-contact-info h2 {
    margin-bottom: 20px;
    color: #ffffff;
}

/* Form Section */
.cf-contact-form-wrapper {
    flex: 1 1 50%;
    padding: 40px;
    background-color: rgba(20, 27, 65, 0.95);
}

.cf-partner-form-box input,
.cf-partner-form-box textarea {
    width: 100%;
    padding: 12px 15px;
    margin-bottom: 15px;
    border: none;
    border-radius: 6px;
    background-color: #212c5b;
    color: #ffffff;
    font-size: 16px;
}

.cf-partner-form-box input::placeholder,
.cf-partner-form-box textarea::placeholder {
    color: #9ba4c7;
}

/* Button */
.cf-partner-form-box button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 12px;
    background-color: #4a6cf7;
    border: none;
    color: white;
    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cf-partner-form-box button:hover {
    background-color: #3a57d6;
}


@media (min-width: 1020px) {
    .cf-contact-container {
      flex-direction: row !important;
    }
  
    .cf-contact-info,
    .cf-contact-form-wrapper {
      flex: 1 1 50% !important;
      padding: 40px !important;
    }
}
  

@media (max-width: 576px) {
    .cf-contact-section {
        padding: 30px 10px;
        background-attachment: scroll;
    }

    .cf-contact-container {
        border-radius: 8px;
        box-shadow: none;
    }

    .cf-contact-info h2 {
        font-size: 22px;
    }

    .cf-contact-info,
    .cf-contact-form-wrapper {
        padding: 20px 15px;
    }

    .cf-partner-form-box input,
    .cf-partner-form-box textarea {
        font-size: 15px;
        padding: 10px 12px;
    }

    .cf-partner-form-box button {
        font-size: 15px;
        padding: 10px;
    }
}
