/*  ========== Start General Section  ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

/* Header */
header {
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: center; /* Centers logo by default */
    position: relative; /* Allows absolute positioning for toggle */
}

.logo img {
    height: 70px;
}

.menu-toggle {
    display: none; /* Hide on desktop */
    cursor: pointer;
    background: transparent;
    border: none;
    position: absolute; /* Position toggle button absolutely */
    right: 20px; /* Align toggle button to the right */
    top: 50%; /* Vertically center */
    transform: translateY(-50%);
}

.menu-icon {
    width: 25px;
    height: 2px;
    background-color: #333;
    display: block;
    position: relative;
}

.menu-icon::before,
.menu-icon::after {
    content: '';
    width: 25px;
    height: 2px;
    background-color: #333;
    position: absolute;
    left: 0;
}

.menu-icon::before {
    top: -8px;
}

.menu-icon::after {
    bottom: -8px;
}

.desktop-nav ul {
    margin-top: 5px;
    margin-bottom: -5px;
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 10px 0;
}

.desktop-nav ul li a {
    text-decoration: none;
    color: #333;
    font-size: 16px;
    padding: 5px 10px;
    transition: color 0.3s;
}

.desktop-nav ul li a:hover {
    color: #e74c3c;
}

/* Footer */
#footer {
    background-color: #000; 
    color: #ccc;
    padding: 30px 0px;
    text-align: center;
}

.footer-container {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
}

.company-details {
    text-align: center;
    width: 250px;
}

.company-address img {
    height: 24px;
    margin-top: 40px;
    margin-bottom: 5px;
}

.company-phone img, .company-email img{
    margin-bottom: 5px;
}

.zerif-footer-address,
.zerif-footer-email,
.zerif-footer-phone {
    font-size: 14px;
    line-height: 1.5;
    color: #a5a5a5;
}

.zerif-footer-address a,
.zerif-footer-email a,
.zerif-footer-phone a {
    color: #a5a5a5;
    text-decoration: none;
}

.zerif-footer-address a:hover,
.zerif-footer-email a:hover,
.zerif-footer-phone a:hover {
    color: #ff6347;
    transform: scale(1.1);
}
/*  ========== End General Section  ========== */
/*  ========== Start index.html Section  ========== */
.video-section {
    position: relative;
    background-color: #000;
    padding: 50px 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.video-container {
    position: relative;
    width: 90%;
    max-width: 80%;
    padding-top: 56.25%;
    background-color: #000;
    overflow: hidden;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.wallet-section {
    background-color: #000;
    padding: 60px 20px;
    color: #bda688;
    width: 100%;
    box-sizing: border-box;
    text-align: center;
}

.wallet-container {
    max-width: 1200px;
    margin: 0 auto;
}

.wallet-content {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    flex-direction: row;
    flex-wrap: wrap;
    text-align: center;
}

.wallet-logo img {
    width: 200px;
    height: auto;
    margin-right: 5px;
}

.wallet-card img {
    width: 300px;
    height: auto;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.wallet-text {
    flex-basis: 100%;
    line-height: 2;
    font-size: 3.5rem;
    font-weight: 600;
    color: #bda688;
    text-align: center;
}

.wallet-text a {
    color: #bda688;
    text-decoration: underline;
}

.wallet-banner {
  text-align: center;
  width: 100%;
  display: flex;
  justify-content: center; 
  align-items: center;
}

.wallet-banner img {
    max-width: 80%;
    height: auto;
}
/*  ========== End index.html Section  ========== */
/*  ========== Start about.html Section  ========== */
/* Banner Section */
.banner {
    height: 100vh;
    background-image: url('../images/klcc_view_banner.jpg');
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.banner-buttons {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 20px;
}

/* Buttons Styling */
.btn {
    padding: 16px 36px;
    font-size: 14px;
    color: #fff;
    border: none;
    cursor: pointer;
    border-radius: 6px;
    transition: background 0.3s;
}

.red-btn {
    background-color: #e74c3c;
}

.green-btn {
    background-color: #1ba555;
}

.red-btn:hover {
    background-color: #c0392b;
}

.green-btn:hover {
    background-color: #1e8449;
}

/* Service Section */
#services {
    background-color: #f4f6f9;
    margin-top: 0px;
    padding: 50px 0px 140px 0px;
    position: relative;
    z-index: 2;
    text-align: center;
}

#services h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: #333;
    margin-bottom: 20px;
}

#services .service-subtitle {
    font-size: 16px;
    margin-top: -5px;
    margin-bottom: 60px;
}

.modern-services-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.modern-service-card {
    background: linear-gradient(135deg, #ffffff, #f8f9fa);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.modern-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

.service-icon {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    border: 10px solid #f0f0f0;
    transition: border-color 0.3s;
    margin-bottom: 20px;
}

.modern-service-card .icon img {
    width: 60px;
    height: auto;
}

.modern-service-card h3 {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.modern-service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 10px;
}

/* Colored Borders and Hover Effects */
.red-border:hover {
    border-color: #e74c3c;
}

.green-border:hover {
    border-color: #27ae60;
}

.blue-border:hover {
    border-color: #2980b9;
}

.yellow-border:hover {
    border-color: #f1c40f;
}

.teal-border:hover {
    border-color: #1abc9c; /* Teal color for Financial Gate */
}

.purple-border:hover {
    border-color: #9b59b6; /* Purple color for Community Academy */
}

.pink-border:hover {
    border-color: #ff6b81; /* Pink color for FFBC Support */
}

.orange-border:hover {
    border-color: #e67e22; /* Orange color for Corporation Support */
}

/* About Section Styling */
#about {
    background-color: #1a1a1a;
    color: #d9d9d9;
    padding: 100px 40px 60px;
    text-align: center;
}

#about h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: #ffffff;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.subheading {
    font-size: 16px;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 60px;
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: center;
    gap: 40px;
    text-align: left;
}

.about-content .left {
    max-width: 550px;
    align-items:flex-end;
    font-size: 40px;
    color: #ffffff;
    margin-top: -10px;
    margin-left: 150px;
}

.about-content .right {
    max-width: 550px;
    line-height: 1.5;
    font-size: 14px;
    color: #a5a5a5;
    text-align: justify;
}

.about-content .right p {
    margin: 10px 0; /* Adds space between paragraphs */
}

/* Location Section Styling */
.location-section {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 50px 0;
    color: #ffffff;
}

.location-section hr {
    width: 15%;
    border: 0.5px solid #666;
}

.location-section h3 {
    font-size: 18px;
    font-weight: bold;
    color: #ffffff;
    text-align: center;
}

/* Location Information Styling */
.location-info {
    display: flex;
    justify-content: space-evenly;
    gap: 50px;
    margin-top: 40px;
    text-align: left;
    color: #a5a5a5;
}

.location-info div {
    max-width: 300px;
    line-height: 1.5;
}

.location-info strong {
    font-weight: bold;
    color: #a5a5a5;
}

/* Latest News Section Styling */
#latest-news {
    background-color: #f4f6f9;
    color: #333;
    padding: 80px 20px;
    text-align: center;
}

#latest-news h2 {
    font-family: 'Playfair Display', serif;
    font-size: 36px; 
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
}

.news-item {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.news-image img {
    width: 100%; 
    max-width: 400px;
    height: auto; 
    background-color: #eee;
    border-radius: 10px;
}
.news-content {
    max-width: 500px;
    text-align: left;
}

.news-content h3 {
    font-size: 24px;
    font-weight: bold;
    color: #333;
    text-align: center; /* Center the heading */
    margin-bottom: -10px;
}

.news-content .red-line {
    width: 200px; /* Adjust width as needed */
    height: 3px;
    background-color: #e74c3c;
    margin: 10px auto 20px;
}

.news-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    text-align: justify;
}

/* Contact Section Styling */
#contact {
    position: relative;
    padding-top: 40px;
    height: 100vh;
    background-image: url('../images/klcc_view_banner.jpg');
    background-size: auto 100%;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    text-align: center;
    color: #fff; /* For white text on overlay */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

#contact h2 {
    font-family: 'Playfair Display', serif;
    font-size: 46px;
    font-weight: 700;
    color: #fff;
    margin-top: -30px;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

#contact p {
    font-size: 16px;
    color: #fff;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
}

.contact-form {
    margin-top: 20px;
    max-width: 2000px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="text"] {
    flex: 1;
    width: 90%; /* Ensure the fields expand to full width of the container */
    max-width: 500px; /* Set a max-width for larger screens */
    padding: 20px; /* Increase padding for a larger field */
    border: none;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px; /* Increase font size for readability */
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

textarea {
    width: 100%;
    height: 200px; /* Increase the height of the text area */
    max-width: 1000px; /* Set a max-width to align with input fields */
    padding: 20px; /* Increase padding for consistency */
    border: none;
    border-radius: 6px;
    background-color: #fff;
    font-size: 14px;
    color: #333;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.send-btn {
    background-color: #e74c3c;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.send-btn:hover {
    background-color: #c0392b;
}
/*  ========== End about.html Section  ========== */
/*  ========== Start debitcard.html Section  ========== */
body.debitcard-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.debitcard-site-content {
    max-width: 1400px;
    margin: 10px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
}

#debitcard-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-left: 100px;
    margin-bottom: 10px;
    text-align: start;
    line-height: 1.6;
}

.debitcard-red-line {
    width: 150px;
    height: 3px;
    background-color: #e74c3c;
    margin: 5px 100px 20px;
    text-align: start;
}

/* debitcard.html left section*/
.debitcard-left {
    flex: 1 1 60%;
    min-width: 300px;
}

#debitcard-content p{
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

.debitcard-section {
    display: flex;
    flex-wrap: wrap;
    margin-left: 50px;
    margin-top: 40px;
    gap: 30px;
}

.features-row {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

.features-img {
    width: 100%;
    max-width: 800px;
    border-radius: 8px;
}

/* debitcard.html right section*/
.debitcard-right {
    flex: 1 1 20%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 150px;
    margin-top: 60px;
    margin-left: 50px;
}

.mockup-img {
    width: 130%;
    height: 45%;
    border-radius: 12px;
}

.card-img {
    width: 80%;
    height: auto;
    max-width: 400px;
    border-radius: 12px;
}

.referral-code {
    font-weight: bold;
    font-family: monospace;
    font-size: 18px;
    color: #000;
    background-color: #f1f1f1;
    padding: 5px;
    display: inline-block;
    border-radius: 6px;
    margin-bottom: 10px;
}
/*  ========== End debitcard.html Section  ========== */
/*  ========== Start debitcard2.html Section  ========== */
body.debitcard2-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #000;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.debitcard2-site-content {
    max-width: 1300px;
    margin: 10px auto;
    padding: 40px;
    background-color: #000;
    border-radius: 8px;
}

#debitcard2-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #bda688;
    margin-left: 100px;
    margin-bottom: 10px;
    text-align: start;
    line-height: 1.6;
}

.debitcard2-red-line {
    width: 150px;
    height: 3px;
    background-color: #e74c3c;
    margin: 5px 100px 20px;
    text-align: start;
}

.debitcard2-section {
    display: flex;
    flex-wrap: wrap;
    margin-left: 50px;
    margin-top: 40px;
    gap: 30px;
}

.special-offer .left-content h3 {
    color: #bda688;
    text-align: start;
}

#debitcard2-content p {
    font-size: 16px;
    color: #bda688;
    text-align: start;
}

.debitcard2-slide3-image, .debitcard2-slide4-image,
.debitcard2-slide5-image, .debitcard2-slide6-image,
.debitcard2-slide7-image, .debitcard2-slide8-image,
.debitcard2-slide9-image, .debitcard2-slide10-image,
.debitcard2-slide11-image {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.special-offer-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.special-offer {
    display: flex;
    align-items: flex-start;
    max-width: 1300px;
    width: 100%;
    gap: 30px;
    color: #bda688;
    font-size: 16px;
}

.special-offer .left-content {
    flex: 1 1 70%;
}

.special-offer .right-content {
    flex: 1 1 30%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.special-offer h3 {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 15px;
}

.special-offer p {
    margin-bottom: 15px;
}

.special-offer .referral-code {
    font-family: monospace;
    font-weight: bold;
    font-size: 16px;
    background-color: #f1f1f1;
    color: #000;
    display: inline-block;
    border-radius: 4px;
}

.special-offer .application-link {
    display: block;
    margin: 20px 0;
    color: #bda688;
    font-weight: bold;
}

.special-offer .manual-link {
    margin-bottom: 30px;
}

.special-offer a {
    color: #e74c3c;
    text-decoration: underline;
}

.special-offer .right-content img {
    margin-top: 30%;
    max-width: 90%;
    height: auto;
}
/*  ========== End debitcard2.html Section  ========== */
/*  ========== Start fgnetservice.html / excnetbanking.html Section  ========== */
body.fgnetservice-page, body.excnetbanking-page {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.fg-site-content, .exc-site-content{
    margin-top: 20px;
    flex: 1; 
    background-color: #ffffff;
    padding: 20px 200px;
    text-align: start;
}

.fg-container, .exc-container{
    max-width: 1200px;
    margin: 0 auto;
}

#fgnetservice-content h2, #excnetservice-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10;
    text-align: start;
    line-height: 1.6;
}

.fg-red-line, .exc-red-line {
    width: 150px;
    height: 3px;
    background-color: #e74c3c;
    margin: 5px 0 20px;
    text-align: start;
}

.fg-service-logo, .exc-net-banking-logo {
    max-width: 300px;
    height: auto;
    margin: 20px auto;
}

#fgnetservice-content p, #excnetbanking-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

#fgnetservice-content a, #excnetbanking-content a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

#fgnetservice-content a:hover,  #excnetbanking-content a:hover {
    text-decoration: underline;
}
/*  ========== End fgnetservice.html / excnetbanking.html Section  ========== */
/*  ========== Start privacy.html / terms.html Section  ========== */
body.privacy-page, body.terms-page {
    height: 100%;
    display: flex;
    flex-direction: column;
    background-color: #fff;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

.privacy-site-content, .terms-site-content {
    max-width: 1200px;
    margin: 10px auto;
    padding: 40px;
    background-color: #fff;
    border-radius: 8px;
}

.privacy-container, .terms-container {
    max-width: 1200px;
    margin: 0 auto;
}

#privacy-content h2, #terms-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #333;
    margin-bottom: 10px;
    text-align: start;
    line-height: 1.6;
}

.privacy-red-line, .terms-red-line {
    width: 150px;
    height: 3px;
    background-color: #e74c3c;
    margin: 5px 0 20px;
    text-align: start;
}

#privacy-content h3, #terms-content h3 {
    font-size: 24px;
    color: #555;
    margin-bottom: 20px;
}

#privacy-content p, #terms-content p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
}

#privacy-content ul, #terms-content ul {
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 20px;
    list-style-type: disc;
}

#privacy-content ul li, #terms-content ul li {
    margin-bottom: 10px;
    color: #555;
    font-size: 16px;
}

#privacy-content a, #terms-content a {
    color: #e74c3c;
    text-decoration: none;
    font-weight: bold;
}

#privacy-content a:hover, #terms-content a:hover {
    text-decoration: underline;
}
/*  ========== End privacy.html / terms.html Section  ========== */





/*  ========== Start Responsive Design ========== */
/*  ========== Start Mobile General Section  ========== */
@media (max-width: 768px) {
    .header-container {
        justify-content: center;
    }

    .logo img {
        height: 35px;
    }

    /* Mobile Menu Toggle */
    .menu-toggle {
        display: block;
        margin-right: -5px;
    }

    /* Hide Desktop Navigation Initially */
    .desktop-nav {
        display: none;
    }

    /* Show Navigation Menu when active */
    .desktop-nav.active {
        display: flex;
        flex-direction: column;
        align-items: center;
        background: #ffffff;
        padding: 10px 0;
        border-top: 1px solid #ddd;
    }

    .desktop-nav ul {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .desktop-nav ul li {
        width: 100%;
        text-align: center;
    }

    .desktop-nav ul li a {
        display: block;
        padding: 10px;
        width: 100%;
        color: #333;
    }

    .desktop-nav ul li a:hover {
        background: #f4f4f4;
        color: #e74c3c;
    }

    /* Footer */
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .company-details {
        width: 100%;
    }

    .company-address img,
    .company-phone img,
    .company-email img {
        margin-top: 10px;
    }
    /*  ========== End Mobile General Section  ========== */
    /*  ========== Start Mobile index.html Section  ========== */
    .logo h1 {
        font-size: 20px; /* Adjust size as needed */
        line-height: 1.2;
    }

    .video-section {
        padding: 30px 0;
    }

    .video-container {
        width: 100%;
    }
    
    .wallet-content {
        flex-direction: row !important;
        justify-content: center;
        text-align: left;
    }

    .wallet-text {
        font-size: 1.5rem;
    }

    .wallet-banner img {
        max-width: 90%;
    }
    
    #services {
        margin-top: 0px;
    }
    /*  ========== End Mobile index.html Section  ========== */
    /*  ========== Start Mobile about.html Section  ========== */
    #latest-news {
        padding: 60px 15px;
    }

    #latest-news h2 {
        font-size: 28px;
        margin-bottom: 30px;
    }

    .news-item {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .news-image img {
        max-width: 100%;
        border-radius: 10px;
    }

    .news-content {
        text-align: center;
    }

    .news-content h3 {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .news-content p {
        font-size: 14px;
        text-align: justify;
        line-height: 1.6;
    }

    .news-content .red-line {
        width: 150px;
        margin: 10px auto 15px;
    }
    /*  ========== End Mobile about.html Section  ========== */
    /*  ========== Start Mobile debitcard.html Section  ========== */
    #debitcard-content h2 {
        margin-left: 0px;
        text-align: center;
    }

    .debitcard-section {
        display: flex;
        flex-wrap: wrap;
        margin-left: 0px;
    }
    /*  ========== End Mobile debitcard.html Section  ========== */
    /*  ========== Start Mobile debitcard2.html Section  ========== */
    body.debitcard2-page {
        padding: 0 10px;
        margin: 0;
    }

    .debitcard2-site-content {
        padding: 10px;
    }

    .debitcard2-section {
        margin-left: 0;
        padding: 0;
    }

    #debitcard2-content h2 {
        font-size: 22px;
        margin: 0;
        text-align: center;
        padding: 10px 0;
    }

    #debitcard2-content p {
        font-size: 14px;
        padding: 0 5px;
        text-align: justify;
    }

    #debitcard2-content img {
        width: 100%;
        height: auto;
        display: block;
        margin: 10px auto;
    }

    .special-offer {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0;
    }

    .special-offer .left-content,
    .special-offer .right-content {
        width: 100%;
        padding: 10px;
        text-align: center;
    }
    /*  ========== End Mobile debitcard2.html Section  ========== */
    /*  ========== Start Mobile fgnetservice.html / excnetbanking.html Section  ========== */
    .fg-site-content, .exc-site-content { 
        padding: 20px;
    }

    #fgnetservice-content h2, #excnetservice-content h2 { 
        font-size: 24px;
        text-align: center;
    }

    .fg-red-line, .exc-red-line {
        width: 100px;
        margin: 10px auto;
    }

    .fg-service-logo, .exc-net-banking-logo {
        max-width: 250px;
        margin: 10px auto;
    }

    #fgnetservice-content p, #excnetbanking-content p {
        font-size: 14px;
        line-height: 1.6;
        text-align: justify;
    }

    #fgnetservice-content a, #excnetbanking-content a {
        font-size: 14px;
    }
    /*  ========== End Mobile fgnetservice.html / excnetbanking.html Section  ========== */
    /*  ========== Start Mobile privacy.html / terms.html Section  ========== */
    .privacy-site-content, .terms-site-content {
        margin: 20px 10px;
        padding: 20px;
    }

    #privacy-content h2, #terms-content h2 {
        font-size: 24px;
        text-align: center;
    }

    .privacy-red-line, .terms-red-line {
        width: 100px;
        margin: 10px auto 20px;
    }

    #privacy-content h3, #terms-content h3 {
        font-size: 20px;
        text-align: center;
    }

    #privacy-content p, #terms-content p {
        font-size: 14px;
        line-height: 1.6;
        text-align: justify;
    }

    #privacy-content ul, #terms-content ul {
        padding-left: 15px;
    }

    #privacy-content ul li, #terms-content ul li {
        font-size: 14px;
    }

    #privacy-content a, #terms-content a {
        font-size: 14px;
    }
    /*  ========== End Mobile privacy.html / terms.html Section  ========== */
}
