.agreements-container {
    background-color: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}


.agreements {
    background-color: #f8f9fa;
    position: relative;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-top: 2rem;
    display: flex;
    color: #000;
    align-items: center;
    gap: 0.8rem;
}

.agreements-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(310px, 1fr));
    gap: 2rem;
}

.agreement-item {
    background-color: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.agreement-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f85138;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.agreement-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(52, 152, 219, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #f85138;
    font-size: 1.2rem;
    margin-bottom: 15px;
}

.agreement-desc {
    color: #7f8c8d;
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.agreement-link {
    display: inline-flex;
    align-items: center;
    color: #f85138;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}