.main-footer-arh24 {
    font-family: var(--font-sans);
    background-color: var(--bg-secondary);
    padding: 3rem 0 1.5rem 0;
    border-top: 1px solid var(--border-color-light);
    font-size: var(--font-size-sm);
}
.main-footer-arh24 a {
    font-family: var(--font-sans);
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s ease;
}
.main-footer-arh24 a:hover {
    color: var(--accent-primary);
}
.main-footer-arh24 ul li a:hover {
     text-decoration: underline;
}
.arh24-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 2rem;
    margin-bottom: 2.5rem;
}
.arh24-footer-column h4 {
    font-size: var(--font-size-base);
    font-family: var(--font-sans);
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    line-height: var(--line-height-heading);
}
.arh24-footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.arh24-footer-column ul li {
    margin-bottom: 0.5rem;
}
.arh24-footer-column ul li a {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
    line-height: 1.4;
}
.arh24-footer-column ul li a:hover {
    color: var(--accent-primary);
}
.arh24-footer-column ul li a i {
    font-size: 1em;
    color: var(--accent-primary);
    line-height: 1;
    width: 1.2em;
    text-align: center;
    flex-shrink: 0;
}
.arh24-footer-logo-area {
    margin-bottom: 1.5rem;
}
.arh24-footer-logo-area .arh24-footer-logo {
    font-family: var(--font-sans);
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--accent-primary);
    margin-bottom: 0.4rem;
    display: block;
    text-decoration: none;
}
.arh24-footer-logo-area p {
    font-family: var(--font-sans);
    font-size: var(--font-size-xs);
    max-width: 280px;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    line-height: 1.65;
}
.arh24-footer-socials a {
    color: var(--accent-primary);
    font-size: 1.3rem;
    margin-right: 0.8rem;
    display: inline-block;
    text-decoration: none;
}
.arh24-footer-socials a:last-child {
    margin-right: 0;
}
.arh24-footer-socials a:hover {
    color: var(--accent-primary-hover);
    text-decoration: none;
}
.arh24-footer-payment {
    text-align: center;
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border-color-light);
}
.arh24-payment-title {
    display: block;
    font-size: var(--font-size-sm);
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
}
.arh24-payment-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.8rem;
}
.arh24-payment-icons i {
    font-size: 2rem;
    color: var(--text-muted);
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    padding: 0.2rem;
}
.arh24-payment-icons i:hover {
    color: var(--text-primary);
    transform: scale(1.08);
    text-decoration: none;
}
.arh24-payment-icons .fa-cc-visa { color: #1A1F71; }
.arh24-payment-icons .fa-cc-mastercard { color: #EB001B; }
.arh24-payment-icons .fa-cc-amex { color: #0073CE; }
.arh24-payment-icons .fa-cc-discover { color: #FF6600; }
.arh24-payment-icons .fa-paypal { color: #003087; }
.arh24-payment-icons .fa-stripe { color: #6772E5; }
.arh24-payment-icons .fa-bitcoin { color: #F7931A; }
.arh24-payment-icons .fa-ethereum { color: #627EEA; }
.arh24-payment-icons .fa-monero { color: #FF6600; }
.arh24-payment-icons .fa-ripple { color: #0076FF; }

.arh24-footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-secondary);
    font-size: var(--font-size-xs);
}
.arh24-footer-bottom p {
    font-family: var(--font-sans);
    margin-bottom: 0;
    font-size: inherit;
}

@media (max-width: 768px) {
    .main-footer-arh24 {
        padding: 2.5rem 0 1.5rem 0;
    }
    .arh24-footer-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 2rem;
    }
    .arh24-footer-column {
        margin-bottom: 1rem;
        text-align: center;
        padding-left: 0;
        padding-right: 0;
    }
    .arh24-footer-logo-area {
        text-align: center;
    }
    .arh24-footer-logo-area p {
        margin-left: auto;
        margin-right: auto;
    }
    .arh24-footer-socials {
        justify-content: center;
    }
    .arh24-footer-column ul {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 0.6rem 1.2rem;
        padding-left: 0;
    }
    .arh24-footer-column ul li {
        margin: 0;
        width: 100%;
        text-align: left;
    }
    .arh24-footer-column ul li a {
        display: flex;
        align-items: center;
        gap: 0.5em;
    }
    .arh24-footer-column ul li a i {
        min-width: 1.2em;
        text-align: center;
    }
    .arh24-payment-icons {
        gap: 0.6rem;
    }
    .arh24-payment-icons i {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .arh24-footer-column h4 {
        margin-bottom: 0.6rem;
    }
    .arh24-footer-column ul li {
        margin-bottom: 0.4rem;
    }
    .arh24-footer-column ul li a {
        font-size: var(--font-size-xs);
    }
    .arh24-footer-column ul li a i {
        font-size: 0.95em;
    }
}