/* Scoped to prevent affecting other sections */
    .eye-camp-full-section {
        width: 100%; /* Makes the section cover full width */
        padding: 40px 0;
        background-color: #ffffff;
        font-family: 'Segoe UI', Arial, sans-serif;
    }

    .eye-camp-full-section .ec-full-container {
        width: 95%; /* Occupies 95% of the screen width */
        margin: 0 auto;
        background: #fdfdfd;
        padding: 30px;
        border-radius: 10px;
        box-shadow: 0 0 15px rgba(0,0,0,0.05);
        border: 1px solid #eee;
    }

    .eye-camp-full-section .ec-header {
        text-align: center;
        margin-bottom: 40px;
    }

    .eye-camp-full-section h2 {
        color: #1a5c96;
        font-size: 32px;
        margin-bottom: 10px;
    }

    .eye-camp-full-section .ec-label {
        display: block;
        margin-bottom: 10px;
        font-weight: 600;
        color: #444;
    }

    .eye-camp-full-section .ec-group {
        margin-bottom: 25px;
    }

    /* Inputs take full width of their container */
    .eye-camp-full-section .ec-input, 
    .eye-camp-full-section .ec-select, 
    .eye-camp-full-section .ec-textarea {
        width: 100%;
        padding: 15px;
        border: 1px solid #ccc;
        border-radius: 5px;
        font-size: 16px;
        box-sizing: border-box; /* Important for full width */
        background-color: #fff;
    }

    .eye-camp-full-section .ec-row {
        display: flex;
        gap: 20px;
    }

    .eye-camp-full-section .ec-submit-btn {
        width: 100%;
        background-color: #3b85a5;
        color: white;
        padding: 18px;
        border: none;
        border-radius: 5px;
        font-size: 20px;
        font-weight: bold;
        cursor: pointer;
        transition: background 0.3s ease;
    }

    .eye-camp-full-section .ec-submit-btn:hover {
        background-color: #daaa32;
    }

    /* Responsive adjustment for small screens */
    @media (max-width: 768px) {
        .eye-camp-full-section .ec-row {
            flex-direction: column;
            gap: 0;
        }
        .eye-camp-full-section .ec-full-container {
            width: 90%;
            padding: 20px;
        }
    }
    
  .btn-primary {
          background-color: #4a889a;
          border: none;
          width: 20%;
          margin: 0 auto;
          border-radius: 27px;
  }
  .btn-primary:hover {
      background-color: #daaa32;
}

@media (max-width: 576px) {
    .btn-lg {
        width: 100%;
        font-size: 16px;
        padding: 12px 10px;
        border-radius: 8px;
    }

    .d-grid {
        display: block;
    }
}
