 /* ==== ICF Contact Section ==== */
    .ICF-container {
      max-width: 1200px;
      margin: auto;
      background-color: #fff;
      border-radius: 12px;
      box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
      overflow: hidden;
      display: flex;
      flex-wrap: wrap;
      height: 80%;
    }

    #ICF-section h2 {
      width: 100%;
      text-align: center;
      font-size: 32px;
      color: #004080;
      margin: 20px 0;
    }

    .ICF-map,
    .ICF-form {
      flex: 1 1 500px;
      padding: 30px;
      height: 60%;
    }

    .ICF-map iframe {
      width: 100%;
      min-height: 450px;
      border: 0;
      border-radius: 12px;
    }

    #ICF-form {
      display: flex;
      flex-direction: column;
      gap: 0px;
    }

    .ICF-label {
      margin-top: 20px;
      font-weight: 600;
      color: #004080;
    }

    .ICF-input,
    .ICF-textarea {
      margin-top: 8px;
      padding: 12px 14px;
      font-size: 16px;
      border: 1px solid #ccc;
      border-radius: 8px;
      transition: border-color 0.3s;
    }

    .ICF-input:focus,
    .ICF-textarea:focus {
      border-color: #00ab6b;
      outline: none;
    }

    .ICF-textarea {
      resize: vertical;
      min-height: 120px;
    }

    .ICF-btn {
      margin-top: 25px;
      padding: 14px;
      background-color: #007bff;
      color: white;
      font-size: 16px;
      font-weight: 600;
      border: none;
      border-radius: 8px;
      cursor: pointer;
      transition: background-color 0.3s ease;
    }

    .ICF-btn:hover {
      background-color: #7793b1;
    }

    #ICF-message {
      text-align: center;
      font-size: 16px;
      margin-top: 20px;
      font-weight: 500;
    }

    .ICF-success {
      color: green;
    }

    .ICF-error {
      color: red;
    }

    @media (max-width: 768px) {
      .ICF-container {
        flex-direction: column;
        width: 100%;
        height: auto;
      }

      .ICF-map,
      .ICF-form {
        padding: 20px;
        flex: 1 1 500px;
      }
    }