.arh24-partnership-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}
.arh24-partnership-card {
    background-color: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--border-radius-xl);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    text-align: center;
    border: 1px solid var(--border-color-light);
    border-left: 4px solid var(--accent-primary);
    transition: var(--transition-smooth);
}
.arh24-partnership-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-left-color: var(--accent-primary-hover);
}
.arh24-partnership-card-icon {
    font-size: 2.75rem;
    color: var(--accent-primary);
    margin-bottom: 1.5rem;
    line-height: 1;
}
.arh24-partnership-card h3 {
    font-size: var(--font-size-xl);
    margin-bottom: 0.75rem;
    line-height: var(--line-height-heading);
}
.arh24-partnership-card-description {
    font-size: var(--font-size-base);
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}
.arh24-partnership-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 1.75rem 0;
    text-align: left;
    font-size: var(--font-size-sm);
    color: var(--text-secondary);
}
.arh24-partnership-benefits li {
    display: flex;
    align-items: center;
    margin-bottom: 0.6rem;
}
.arh24-partnership-benefits li i {
    color: var(--accent-secondary);
    margin-right: 0.6rem;
    font-size: 1.1em;
}

.arh24-why-partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3.5rem 2rem;
    margin-top: 3.5rem;
}
.arh24-why-partner-item {
    background: var(--bg-card);
    padding: 3rem 1.5rem 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    border: 1px solid var(--border-color-light);
    border-left: 4px solid var(--accent-primary);
    transition: var(--transition-smooth);
    position: relative;
    text-align: center;
    margin-top: 35px;
}
.arh24-why-partner-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--accent-primary-hover);
}
.arh24-why-partner-icon {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: var(--bg-card);
    border: 5px solid var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
    font-size: 2.2rem;
    color: var(--accent-primary);
}
.arh24-why-partner-item:hover .arh24-why-partner-icon {
    background-color: var(--accent-primary);
    color: var(--text-on-accent);
}
.arh24-why-partner-item h4 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
    line-height: var(--line-height-heading);
    margin-top: 0;
}
.arh24-why-partner-item p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: 0;
}

.arh24-get-started-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3.5rem;
    position: relative;
}
.arh24-step-item {
    background-color: rgba(255,255,255,0.05);
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255,255,255,0.1);
}
.arh24-step-number {
    position: absolute;
    top: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--accent-secondary);
    color: var(--text-on-accent);
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-lg);
    font-weight: 700;
    border: 3px solid var(--bg-dark-accent);
    box-shadow: var(--shadow-md);
}
.arh24-step-icon {
    font-size: 2.5rem;
    color: var(--accent-secondary);
    margin-bottom: 1rem;
    margin-top: 1rem;
}
.arh24-step-item h4 {
    font-size: var(--font-size-lg);
    margin-bottom: 0.5rem;
    font-weight: 500;
    line-height: var(--line-height-heading);
}
.arh24-step-item p {
    font-size: var(--font-size-sm);
    line-height: 1.6;
    margin-bottom: 0;
}

.arh24-final-cta-partners {
    background-color: var(--bg-secondary);
    text-align: center;
}
.arh24-final-cta-partners h2 {
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: var(--line-height-heading);
}
.arh24-final-cta-partners p {
    font-size: var(--font-size-lg);
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto 2rem auto;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .arh24-partnership-cards-grid, .arh24-why-partner-grid, .arh24-get-started-steps {
        grid-template-columns: 1fr;
    }
}