* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #151515;
    color: #f8f8f8;
    overflow-x: hidden;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    background: url('Images/Payment_Gateway/hero1.webp') no-repeat center center/cover;
    padding-top: 150px;
    margin-bottom: -100px;
}

/* Header */
.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000; /* Moderate z-index, relying on root stacking context */
}

.logo-img {
    max-height: 100px;
    width: 150px;
}

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    cursor: pointer;
}

.menu-toggle .bar {
    height: 3px;
    width: 100%;
    background-color: #fff;
    border-radius: 10px;
    transition: all 0.3s ease-in-out;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 100px;
}

.nav-links a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #ffcc00;
}

.btn {
    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #111;
    border: none;
    padding: 12px 25px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(231, 186, 3, 0.4);
    transition: all 0.5s ease;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(231, 186, 3, 0.5);
}

.header-btn {
    margin-left: 20px;
}

/* Hero Content */
.hero-content {
    position: relative;
    max-width: 600px;
    padding: 0 50px;
    text-align: left;
}

.hero-content h1 {
    font-size: 80px;
    font-weight: 700;
    color: #f8f8f8;
    margin-top: 50px;
    margin-bottom: 40px;
}

.hero-content p {
    font-size: 16px;
    color: #f8f8f8;
    margin-top: 100px;
    margin-bottom: 50px;
    line-height: 1.6;
}

.hero-btn {
    padding: 18px 35px;
    font-size: 18px;
}

/* Static Hero Images */
.hero-images {
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
}

.hero-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

.hero-image-fg {
    position: absolute;
    bottom: 10%;
    right: 0;
    max-width: 60%;
    height: auto;
    filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.5));
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content h1 { font-size: 60px; }
    .hero-content p { font-size: 20px; padding: 0 40px; }
    .hero-image-fg { max-width: 35%; }
    .nav-links { gap: 40px; }
}

@media (max-width: 768px) {
    .header {
        padding: 10px 20px;
    }
    .menu-toggle { display: flex; }
    nav { display: none; width: 100%; }
    nav.active {
        display: block;
        position: absolute;
        top: 100%;
        left: 0;
        background: #151515;
        padding: 20px;
    }
    .nav-links {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
    .header-btn { display: none; }
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(9px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }
    .hero { height: 60vh; padding-top: 100px; margin-bottom: -50px; }
    .hero-content { padding: 0 20px; }
    .hero-content h1 { font-size: 40px; margin-bottom: 20px; }
    .hero-content p { font-size: 18px; margin-bottom: 30px; }
    .hero-image-fg { max-width: 30%; bottom: -3%; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 32px; }
    .hero-content p { font-size: 16px; padding: 0 15px; }
    .hero-btn { padding: 10px 20px; font-size: 16px; }
    .hero-image-fg { max-width: 25%; }
    .logo-img { max-height: 80px; width: 120px; }
}

/* i-Gaming Section */
.i-gaming {
    background-color: #151515;
    margin-top: 200px;
    padding: 80px 50px;
    color: #f8f8f8;
}

.i-gaming h2 {
    font-size: 70px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 100px;
    color: #f8f8f8;
}

.i-gaming-container {
    display: flex;
    justify-content: center;
    gap: 100px;
    max-width: 1400px;
    margin: 0 auto;
}

.i-gaming-item {
    flex: 1;
    max-width: 400px;
}

.i-gaming-header {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.i-gaming-icon {
    width: 50px;
    height: 50px;
    background-color: #F7C615;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.i-gaming-icon img {
    max-width: 70%;
    max-height: 70%;
}

.i-gaming-item h3 {
    font-size: 24px;
    font-weight: 700;
    color: #F7C615;
    margin: 0;
    line-height: 50px;
}

.i-gaming-item p {
    font-size: 16px;
    line-height: 1.6;
    color: #f8f8f8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .i-gaming-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .i-gaming-item {
        max-width: 100%;
    }

    .i-gaming h2 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {
    .i-gaming {
        padding: 60px 20px;
    }

    .i-gaming h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .i-gaming-header {
        margin-bottom: 15px;
    }

    .i-gaming-item h3 {
        font-size: 20px;
        line-height: 40px;
    }

    .i-gaming-icon {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .i-gaming {
        padding: 40px 15px;
    }

    .i-gaming h2 {
        font-size: 28px;
    }

    .i-gaming-item h3 {
        font-size: 18px;
    }

    .i-gaming-item p {
        font-size: 14px;
    }
}

/* Stats Section */
.stats {
    background-color: #151515;
    padding: 80px 50px;
    color: #f8f8f8;
}

.stats h2 {
    font-size: 50px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 60px;
    color: #f8f8f8;
}

.stats-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1600px;
    margin: 0 auto;
}

.stats-column {
    flex: 1;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.stats-item {
    background-color: #202020;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.stats-item-bg {
    background: url('Images/Payment_Gateway/1.webp') no-repeat center/cover;
}

.stats-header {
    display: flex;
    align-items: center;
    margin-bottom: 100px;
}

.stats-icon {
    width: 60px;
    height: 60px;
    background-color: #fffc2e;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    flex-shrink: 0;
}

.stats-icon img {
    max-width: 70%;
    max-height: 70%;
}

.stats-item h3 {
    font-size: 28px;
    font-weight: 700;
    color: #f8f8f8;
    margin: 0;
    line-height: 60px;
    text-align: left;
}

.stats-item p {
    font-size: 18px;
    line-height: 1.6;
    color: #f8f8f8;
}

/* Second Div Alternate Styling */
.stats-item-alt {
    background-color: #615c19;
}

.stats-item-alt h3,
.stats-item-alt p {
    color: #ffda06;
}

/* Third Div Styling */
.stats-column-single {
    background: url('Images/Payment_Gateway/3.jpg') no-repeat center/cover;
    padding: 40px;
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 620px;
    text-align: left;
}

.stats-column-single h3 {
    font-size: 28px;
    font-weight: 700;
    color: #f8f8f8;
    margin-bottom: 100px;
    text-align: left;
}

.stats-column-single p {
    font-size: 18px;
    line-height: 1.6;
    color: #f8f8f8;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .stats-container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }

    .stats-column {
        max-width: 100%;
    }

    .stats h2 {
        font-size: 40px;
    }

    .stats-column-single {
        min-height: 400px;
    }
}

@media (max-width: 768px) {
    .stats {
        padding: 60px 20px;
    }

    .stats h2 {
        font-size: 32px;
        margin-bottom: 40px;
    }

    .stats-item, .stats-column-single {
        padding: 30px;
        min-height: 250px;
    }

    .stats-header {
        margin-bottom: 80px;
    }

    .stats-column-single h3 {
        margin-bottom: 80px;
    }

    .stats-item h3,
    .stats-column-single h3 {
        font-size: 24px;
        line-height: 50px;
    }

    .stats-icon {
        width: 50px;
        height: 50px;
    }

    .stats-item p,
    .stats-column-single p {
        font-size: 16px;
    }

    .stats-column-single {
        min-height: 350px;
    }
}

@media (max-width: 480px) {
    .stats {
        padding: 40px 15px;
    }

    .stats h2 {
        font-size: 28px;
    }

    .stats-item, .stats-column-single {
        padding: 20px;
        min-height: 200px;
    }

    .stats-header {
        margin-bottom: 60px;
    }

    .stats-column-single h3 {
        margin-bottom: 60px;
    }

    .stats-item h3,
    .stats-column-single h3 {
        font-size: 20px;
        line-height: 40px;
    }

    .stats-icon {
        width: 40px;
        height: 40px;
    }
}

/* Acceptance Rate Section */
.acceptance-rate {
    background-color: #151515;
    padding: 100px 50px;
    color: #f8f8f8;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.acceptance-rate-container {
    background: linear-gradient(to bottom, #997800, #26200D), url('Images/Payment_Gateway/box-one.webp') no-repeat center/cover;
    background-blend-mode: overlay;
    border-radius: 30px;
    padding: 100px 50px;
    max-width: 1800px;
    margin: 0 auto;
}

.acceptance-rate-main-heading {
    font-size: 70px;
    font-weight: 700;
    color: #f8f8f8;
    text-align: center;
    margin-bottom: 80px;
}

.acceptance-rate-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 100px;
}

.acceptance-rate-text {
    flex: 1;
    max-width: 800px;
}

.acceptance-rate-text h3 {
    font-size: 60px;
    font-weight: 700;
    color: #F7C615;
    margin-bottom: 50px;
    transition: opacity 0.5s ease;
}

.acceptance-rate-text p {
    font-size: 20px;
    line-height: 1.8;
    color: #f8f8f8;
    transition: opacity 0.5s ease;
}

.acceptance-rate-slider {
    flex: 1;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 40px;
    max-width: 900px;
}

.slider-image {
    width: 100%;
    max-width: 350px;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slider-image img {
    width: 100%;
    height: auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .acceptance-rate-content {
        flex-direction: column;
        gap: 80px;
    }

    .acceptance-rate-text {
        max-width: 100%;
        text-align: center;
    }

    .acceptance-rate-slider {
        justify-content: center;
        max-width: 100%;
    }

    .slider-image {
        max-width: 300px;
    }

    .acceptance-rate-main-heading {
        font-size: 60px;
    }

    .acceptance-rate h3 {
        font-size: 50px;
    }
}

@media (max-width: 768px) {
    .acceptance-rate {
        padding: 80px 20px;
    }

    .acceptance-rate-container {
        padding: 60px 30px;
    }

    .acceptance-rate-main-heading {
        font-size: 50px;
        margin-bottom: 60px;
    }

    .acceptance-rate h3 {
        font-size: 40px;
        margin-bottom: 40px;
    }

    .acceptance-rate-text p {
        font-size: 18px;
    }

    .acceptance-rate-slider {
        gap: 30px;
    }

    .slider-image {
        max-width: 250px;
    }
}

@media (max-width: 480px) {
    .acceptance-rate {
        padding: 60px 15px;
    }

    .acceptance-rate-container {
        padding: 40px 20px;
    }

    .acceptance-rate-main-heading {
        font-size: 40px;
        margin-bottom: 50px;
    }

    .acceptance-rate h3 {
        font-size: 32px;
    }

    .acceptance-rate-text p {
        font-size: 16px;
    }

    .acceptance-rate-slider {
        gap: 20px;
    }

    .slider-image {
        max-width: 200px;
    }
}

/* Payment Providers Section */
.payment-providers {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #151515;
    color: #fff;
    padding: 100px 5px; /* Increased top padding to prevent overlap */
    box-sizing: border-box;
}

.providers-container {
    max-width: 1800px;
    width: calc(100% - 10px);
    display: flex;
    gap: 60px;
    align-items: center;
}

.providers-text {
    flex: 0 0 35%;
    max-width: 35%;
    padding-left: 10px;
    padding-right: 0;
    text-align: left;
}

.providers-text h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: bold;
}

.providers-text p {
    font-size: 1.1rem;
    line-height: 1.6;
}

.providers-text p span {
    color: #ff6200;
    font-weight: bold;
}

.providers-images {
    flex: 0 0 65%;
    max-width: 65%;
    height: 600px;
    position: relative;
    background: #151515;
    border-radius: 20px;
    overflow: visible;
}

.providers-images-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: 70%;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.provider-image {
    position: absolute;
    border-radius: 50%;
    filter: grayscale(90%);
    transition: filter 0.3s ease, transform 0.3s ease;
    object-fit: contain;
    background-color: transparent;
    padding: 0;
    box-sizing: border-box;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    width: 120px;
    height: 120px;
}

.provider-image:hover {
    filter: grayscale(0);
    transform: scale(1.2);
}

/* Define different sizes for images, accounting for .providers-images-bg as first child */
.provider-image:nth-child(2), /* Apple Pay */
.provider-image:nth-child(5), /* Google Pay */
.provider-image:nth-child(8) { /* Skrill */
    width: 160px;
    height: 160px;
}

.provider-image:nth-child(3), /* Bitcoin */
.provider-image:nth-child(6), /* Visa */
.provider-image:nth-child(9) { /* SEPA */
    width: 120px;
    height: 120px;
}

.provider-image:nth-child(4), /* Giropay */
.provider-image:nth-child(7) { /* PayPal */
    width: 140px;
    height: 140px;
}

/* Define fixed positions for images, adjusted to prevent overlap */
.provider-image:nth-child(2) { /* Apple Pay */
    left: 100px;
    top: 40px;
}

.provider-image:nth-child(3) { /* Bitcoin */
    left: 400px;
    top: 300px;
}

.provider-image:nth-child(4) { /* Giropay */
    left: 500px;
    top: 150px;
}

.provider-image:nth-child(5) { /* Google Pay */
    left: 900px;
    top: 450px;
}

.provider-image:nth-child(6) { /* Visa */
    left: 280px;
    top: 450px;
}

.provider-image:nth-child(7) { /* PayPal */
    left: 600px;
    top: 500px;
}

.provider-image:nth-child(8) { /* Skrill */
    left: 800px;
    top: 50px;
}

.provider-image:nth-child(9) { /* SEPA */
    left: 800px;
    top: 300px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .providers-container {
        flex-direction: column;
        gap: 20px;
        width: calc(100% - 10px);
        max-width: 100%;
    }

    .providers-text,
    .providers-images {
        flex: 1 0 100%;
        max-width: 100%;
    }

    .providers-text {
        padding: 0;
        text-align: center;
    }

    .providers-images {
        height: 500px;
    }

    .providers-images-bg {
        width: 80%;
        height: 60%;
    }

    .provider-image:nth-child(2),
    .provider-image:nth-child(5),
    .provider-image:nth-child(8) {
        width: 135px;
        height: 135px;
    }

    .provider-image:nth-child(3),
    .provider-image:nth-child(6),
    .provider-image:nth-child(9) {
        width: 95px;
        height: 95px;
    }

    .provider-image:nth-child(4),
    .provider-image:nth-child(7) {
        width: 115px;
        height: 115px;
    }

    .provider-image:nth-child(2) {
        left: 30px;
        top: 20px;
    }

    .provider-image:nth-child(3) {
        left: 150px;
        top: 250px;
    }

    .provider-image:nth-child(4) {
        left: 250px;
        top: 100px;
    }

    .provider-image:nth-child(5) {
        left: 300px;
        top: 400px;
    }

    .provider-image:nth-child(6) {
        left: 100px;
        top: 350px;
    }

    .provider-image:nth-child(7) {
        left: 200px;
        top: 450px;
    }

    .provider-image:nth-child(8) {
        left: 350px;
        top: 30px;
    }

    .provider-image:nth-child(9) {
        left: 300px;
        top: 250px;
    }
}

/* Only including marquee-related styles to keep it concise; other styles remain unchanged from previous version */

/* Marquee Section */
.marquee-section {
    background-color: #151515;
    padding: 20px 0;
    overflow: hidden;
    margin: 80px 0 120px 0; /* Maintained bottom margin to prevent overlap */
}

.marquee-container {
    width: 100%;
    overflow: hidden;
    padding: 20px 0;
    display: flex;
}

.marquee-text {
    white-space: nowrap;
    color: #d3a40b;
    background-color: #2C2717;
    font-size: 90px;
    font-weight: 900;
    letter-spacing: 2px;
    animation: marquee 30s linear infinite;
    display: inline-block;
    transform: rotate(-2deg);
    transform-origin: center;
}

@keyframes marquee {
    0% { transform: translateX(0) rotate(-2deg); }
    100% { transform: translateX(-100%) rotate(-2deg); }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .marquee-text {
        font-size: 70px;
    }
}

@media (max-width: 768px) {
    .marquee-section {
        margin: 60px 0 100px 0; /* Maintained adjusted bottom margin */
    }
    .marquee-text {
        font-size: 50px;
    }
}

@media (max-width: 480px) {
    .marquee-section {
        margin: 40px 0 80px 0; /* Maintained adjusted bottom margin */
    }
    .marquee-text {
        font-size: 36px;
    }
}

/* Footer Section */
.footer {
    background-color: #222222;
    color: #ffffff;
    padding: 60px 50px 20px;
    position: relative;
    margin-top: 20px;
    border-radius: 40px 40px 0 0;
    overflow: hidden;
}

.footer-warning-section {
    background: rgba(255, 255, 255, 0);
    border: 1px solid rgba(255, 255, 255, 0.048);
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 40px;
    max-width: 1600px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.footer-warning {
    display: inline-block;
    text-align: center;
}

.footer-warning h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.footer-warning p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
}

.footer-warning-logos {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.footer-warning-logo {
    width: 80px;
    height: auto;
    display: block;
}
.footer-warning-logo-2 {
    width: 250px;
    height: auto;
    display: block;
}

.footer-content {
    max-width: 1600px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-logo-img {
    max-height: 100px;
    width: 150px;
}

.footer-links, .footer-contact, .footer-social {
    flex: 1;
    min-width: 200px;
}

.footer-links h3, .footer-contact h3, .footer-social h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #ffcc00;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    font-size: 16px;
    line-height: 2;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #ffcc00;
}

.footer-contact p {
    font-size: 16px;
    line-height: 1.8;
    color: #aaa;
}

.footer-social .social-icons {
    display: flex;
    gap: 20px;
}

.social-icon img {
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
}

.social-icon:hover img {
    transform: scale(1.1);
}

.footer-bottom {
    max-width: 1600px;
    margin: 40px auto 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
}

.footer-bottom p {
    font-size: 14px;
    color: #aaa;
}

.footer-btn {
    background: linear-gradient(135deg, #ffcc00, #ffaa00);
    color: #111;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.5s ease;
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(231, 186, 3, 0.4);
    letter-spacing: 1px;
    font-weight: bold;
}

/* Responsive Design for Footer Warning */
@media screen and (max-width: 1024px) {
    .footer-warning h3 {
        font-size: 20px;
    }
    
    .footer-warning-logo {
        width: 50px;
    }
}

@media screen and (max-width: 768px) {
    .footer-warning-logo {
        width: 45px;
    }
}

@media screen and (max-width: 480px) {
    .footer-warning h3 {
        font-size: 18px;
    }
    
    .footer-warning p {
        font-size: 14px;
    }
    
    .footer-warning-logo {
        width: 40px;
    }
}

/* Responsive Design for Footer */
@media screen and (max-width: 1024px) {
    .footer {
        padding: 40px 40px 20px;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo-img {
        max-height: 80px;
        width: 120px;
    }
    
    .footer-links h3, .footer-contact h3, .footer-social h3 {
        font-size: 20px;
    }
}

@media screen and (max-width: 768px) {
    .footer {
        padding: 30px 20px 15px;
        border-radius: 30px 30px 0 0;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }
    
    .footer-btn {
        padding: 8px 15px;
        font-size: 14px;
    }
}

@media screen and (max-width: 480px) {
    .footer {
        padding: 20px 15px 10px;
        border-radius: 20px 20px 0 0;
    }
    
    .footer-links h3, .footer-contact h3, .footer-social h3 {
        font-size: 18px;
    }
    
    .footer-links a, .footer-contact p {
        font-size: 14px;
    }
    
    .social-icon img {
        width: 25px;
        height: 25px;
    }
    
    .footer-bottom p {
        font-size: 12px;
    }
}
