
      /* ==========================
         MAIN FIXES (Banner + Overlap)
         ========================== */

      .banner-area {
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        padding-top: 120px;
        padding-bottom: 160px;
      }

      .banner-content {
        overflow: visible !important;
      }

      .about-area {
        position: relative;
        z-index: 1;
      }

      /* ==========================
         YOUR CUSTOM CONTENT
         ========================== */

      .rexler-extra-content {
        margin-top: 40px;
        text-align: center;
      }

      .rexler-title {
        font-size: 48px;
        font-weight: 800;
        color: #ffffff;
        margin-bottom: 10px;
        text-transform: uppercase;
        line-height: 1.2;
      }

      .rexler-title span {
        color: #ffcc00;
      }

      .rexler-subtitle {
        font-size: 22px;
        color: #f1f1f1;
        margin-bottom: 30px;
        letter-spacing: 1px;
      }

      .rexler-btn-group {
        display: flex;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
        margin-top: 25px;
      }

      .rexler-btn {
        padding: 12px 28px;
        background: #ffcc00;
        color: #000;
        font-weight: 600;
        border-radius: 50px;
        text-decoration: none;
        transition: all 0.3s ease;
      }

      .rexler-btn:hover {
        background: #ffffff;
        color: #000;
      }

      .rexler-btn.outline {
        background: transparent;
        border: 2px solid #ffcc00;
        color: #ffcc00;
      }

      .rexler-btn.outline:hover {
        background: #ffcc00;
        color: #000;
      }

      /* Charity Cards */
      .rexler-charity-images {
        display: flex;
        justify-content: center;
        gap: 25px;
        flex-wrap: wrap;
        margin-top: 45px;
      }

      .charity-card {
        position: relative;
        width: 260px;
        height: 180px;
        border-radius: 22px;
        overflow: hidden;
        box-shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
        transition: all 0.4s ease;
      }

      .charity-card img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }

      .charity-overlay {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.15));
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
        padding: 18px;
        color: #fff;
      }

      .charity-overlay h4 {
        font-size: 20px;
        font-weight: 700;
        margin: 0;
      }

      .charity-overlay span {
        font-size: 14px;
        color: #ffcc00;
        letter-spacing: 1px;
      }

      .charity-card:hover {
        transform: translateY(-10px) scale(1.06);
        box-shadow: 0 28px 65px rgba(255, 204, 0, 0.45);
      }

      /* ===== Responsive ===== */

      @media (max-width: 991px) {
        .rexler-title {
          font-size: 38px;
        }

        .rexler-subtitle {
          font-size: 18px;
        }

        .charity-card {
          width: 220px;
          height: 160px;
        }

        .rexler-btn {
          padding: 10px 22px;
        }
      }

      @media (max-width: 768px) {
        .rexler-title {
          font-size: 32px;
        }

        .rexler-subtitle {
          font-size: 16px;
        }

        .charity-card {
          width: 200px;
          height: 150px;
        }
      }

      @media (max-width: 576px) {
        .rexler-title {
          font-size: 28px;
        }

        .rexler-subtitle {
          font-size: 14px;
        }

        .rexler-charity-images {
          flex-direction: column;
          gap: 20px;
        }

        .charity-card {
          width: 100%;
          max-width: 320px;
          height: 200px;
          margin: 0 auto;
        }

        .rexler-btn-group {
          flex-direction: column;
          gap: 12px;
        }

        .rexler-btn {
          width: 100%;
          max-width: 300px;
          margin: 0 auto;
          padding: 12px 0;
        }

        .about-area {
          padding-top: 30px;
        }
      }

      /* 1366x768 and similar screens fix */
      @media screen and (max-height: 820px) {
        .banner-area {
          padding-bottom: 200px;
        }

        .rexler-title {
          font-size: 34px;
        }

        .rexler-subtitle {
          font-size: 16px;
          margin-bottom: 20px;
        }

        .charity-card {
          width: 210px;
          height: 150px;
        }

        .rexler-btn-group {
          margin-top: 18px;
          gap: 12px;
        }

        .rexler-btn {
          padding: 10px 18px;
          font-size: 14px;
        }
      }


/* Base Section Styling */
.contact-area {
    padding: 60px 0;
    background-color: #030b15;
}

.section-title {
    margin-bottom: 50px;
}

.section-title .title {
    font-size: clamp(24px, 5vw, 36px); /* Auto-resize text based on screen */
    font-weight: 800;
}

/* Card Styling */
.contact-card {
    display: flex;
    flex-direction: column; /* Mobile by default */
    align-items: center;
    text-align: center;
    background: #030b15;
    padding: 30px 20px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #eee;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: #ff5e14;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.contact-content h4 {
    font-size: 18px;
    color: #f7f7f7;
    margin-bottom: 8px;
}

.contact-content p {
    font-size: 14px;
    color: #ffffff;
    word-break: break-all; /* Prevents long emails from breaking layout on small phones */
}

/* Hover Effect for Desktop */
@media (min-width: 992px) {
    .contact-card {
        flex-direction: row; /* Desktop par horizontal layout */
        text-align: left;
        padding: 35px;
    }
    .contact-icon {
        margin-bottom: 0;
        margin-right: 25px;
        flex-shrink: 0;
    }
    .contact-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 12px 30px rgba(255, 94, 20, 0.15);
        border-color: #ff5e14;
    }
}

/* Mobile Specific Tweaks */
@media (max-width: 576px) {
    .contact-area {
        padding: 40px 15px;
    }
    .contact-card {
        padding: 25px 15px;
    }
}